I’m trying to remove the comma from the excel file before sorting them, but im getting an error.
Hi @darshanb.is22
USe Current row instead of Row
You want to remove the , in a column. If yes.
CurrentRow("Price") = CurrentRow("Price").ToString().Replace(",","")
check it
CurrentRow("Price")=CurrentRow("Price").ToString.Replace(",","")
It worked thank you everyone
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.