I'm trying to load some data from CSV files that have numbers with very high precision. Due to other reasons, I have to load the data as text fields and then convert it to numbers in my workflow. Whenever I try to convert the string values to numbers, I get a warning at runtime that the numbers "had more precision than a double. Some precision was lost." This occurs no matter what numeric datatype I try to use.
I'm fine with rounding these rediculously precise numbers, but I'd like to supress the warning message somehow. I tried explicityly using the ROUND function, but that doesn't work since I need to convert the text to numbers anyway before the round function can be used so I still get this error.
Any ideas? Thanks.
Solved! Go to Solution.