Remove specific character from datatable column

Hi all,

I have a datatable with the “Price” column. Unfortunately, the values within column has $ sign so it was unable to sort properly. Example as shown below.

image

Does anyone have any idea how to remove a character from the entire column?

Thanks!

Have a foreach loop and

row("Price") = row("Price").Replace("$","")

image

Thanks,
Prankur

4 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.