Hi,
I am bringing in a CSV file where I have a column with
When bringing this in from a csv, It comes in as v_string, and no matter how I try to convert to a number, I am running into an issue, whether it is
I need everything to be exact, and appear in non-scientific notation. Any recommendations?
Thank you!
Solved! Go to Solution.
@adam_rafael_18 Can you share some sample data?
Hey @adam_rafael_18, does anything in here help? https://community.alteryx.com/t5/Alteryx-Designer-Knowledge-Base/Converting-Values-from-Scientific-E...
Specifically the ToNumber() function.
Tried to simulate the issue but can;t see it. please can you share sample data.
Was able to solve: What I did was first use a multi-row formula to convert to number IF the values were not null. After that, I filtered for values that contained 'E" (anything that contained E needed to be changed, whereas anything that did not was good to go). From there, I used a text to columns with a delimiter of E, and ended with 3 columns (so as an example, I had 3.0000009, E, and -09) I then did a formula where I did 3.0000009 / (Pow(10,-09)). After that, I unioned the filtered data together. Thanks for the help!