Hi @All,
I have a data in excel one row,I need to remove the comma in that row
ex:
Hjkilds3,Kalstk4,Ijnmg7, — In excel I have data like this
I want to remove the comma in end of the row
It will be not fixed size.
Hi @All,
I have a data in excel one row,I need to remove the comma in that row
ex:
Hjkilds3,Kalstk4,Ijnmg7, — In excel I have data like this
I want to remove the comma in end of the row
It will be not fixed size.
HI @varunk
Try this out… I think it will solve your problem to remove the last character…
you can use an assign activity
Remove(str.Length - 1)
row(“ColumnName”) = Remove(row(“ColumnName”).ToString.Length - 1)
Hope it helps!!
If this works for you, please mark the answer as the solution so that it could help others as well
Hi @Lahiru.Fernando,
Thanks for your help
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.