From this
To this
There are hundreds of it in the excel sheet. Any ideas for a quick way ???
From this
To this
There are hundreds of it in the excel sheet. Any ideas for a quick way ???
Hi @170290064
Try:
CurrentRow(“colName”).Replace(Environment.NewLine, “”)
Please try this
If you got the solution please mark it as solution to close the thread.
Regards,
Hey @170290064 ,
String.Join(“”,yoo.Split(Environment.NewLine.ToCharArray))
Replace yoo with your variable name and
Try this
It worked thanks a lot
May i ask one more question ?
I want to write in the excel sheet and change the indicating columns like in the following.
What shoud i do after that ?
@170290064
In for each take assign activity
CurrentRow(“YourColumn”).ToString=CurrentRow(“YourColumn”).ToString.ReplaceLineEndings(" ")
After that use write range workbook activity
originalDate.ReplaceLineEndings("")
This one works better
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.