Hi ,
I have following data in column Field1 and want it to print in column Desired_Output. Please note my Feild1 is of Double data type
Field1
43.36275
1580.5988
2756.38083
490.52579
899.33922
14.73303
787.32983
43.4266
Desired_Output
43
1.581
2.747
491
899
15
787
43
How can i achieve it ?
Regards
Areeba
Solved! Go to Solution.
Hi @areeba ,
you can convert the column to a string data type using the formula ToString([Field1], 0, '.', ',') - you'll have a dot as thousands separator.
Best,
Roland
Hi @RolandSchubert ,
Thank you for replying but can you be more specific with the formula? This formula gives me error Type mismatch:String provided where a number is required.
Thanks
Areeba
Could you please provide a screenshot of the error? It runs without any problems in my environment.
Hi ,
Please find below the screenshot . One thing when i tried opening your sample it gave me warning that my organization is not having the version to which your sample has been created. Do you think this could be the reason ?
Hi @atcodedog05
You rock!
it just one thing that in the next step i need to take sum of column Output. when i am doing the sum it is giving me result as 2756.461 which is incorrect . The Sum should be 6.214.
Can you tell why i am getting this incorrect sum ?