Removing comma in excel column and sorting them

I’m trying to remove the comma from the excel file before sorting them, but im getting an error.

@darshanb.is22

Currentrow(Price)

Please change row to Currentrow

Hi @darshanb.is22
USe Current row instead of Row

Hi @darshanb.is22

You want to remove the , in a column. If yes.

CurrentRow("Price") = CurrentRow("Price").ToString().Replace(",","")

@darshanb.is22

check it

Hi @darshanb.is22


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.