I have a column with string and numerical values which includes decimals too.
I want to maintain the integrity of these columns while converting the recurring decimal numbers to proper numbers like:
1068.06999999999
999.000999999999
999.001999999999
999.005999999999
Should be
1068.07
999.001
999.002
999.006
I am trying regex identify and convert however I am not getting the right output
I dont know how to correctly do the same
Please find example workflow attached.