Hey everyone,
I want to remove every character in the cells of a column and leave only the integer values.
For example if the datatable is like this:
Number----Equals
45-----21%+
30-----15%+
I want to do this to the “Equals” Column
so output DT should be:
Number----Equals
45-----21
30-----15
And I dont want to use for each row because the excel I have has around 10k rows.
Any suggestions?