I am trying to set certain columns of my data to the fixed decimal type with the format 19.2. There should never be more than 19 integers to the left and I only need it to two decimal points.
For some reason, I am getting errors that the values are not valid for fixed decimal even though the are numbers. They were also formatted as numbers in the original input file. See the screenshot below for some of the examples.
Any idea what is happening and how to fix?
Hi @lbaker
You are trying to convert from VString to Fixed decimal value.
The Vstring contains , as a special character.
Remove (using formula tool, replace function) the , from the Field and convert it.
Many thanks
Shanker V
Hi @lbaker
This issue is because string value for the number contains non-numeric characters like the () and the commas.
See the attached workflow on how to fix it.
Hope that helps