I am facing a issue with converting a variable from string to integer. The robot reads a range from excel and then i assign each column to a variable: row(x).ToString. One column (“Amount”) is composed by amounts. So the robot reads this amounts as string and I do the following steps:
Assign activity → Value = Cint(“Amount”)
Write cell act → Value * -1
Doing that, i get this message error in the assign activity: Asignar: Conversion from string “55.358,61” to type ‘Integer’ is not valid.
So, how could i do it to convert to integer and multiply? Because I don’t know if Value * -1 is correct.
First of all we need to convert your amount to a double and not an integer (integers are only whole numbers, while doubles can hold decimal values).
Your culture has reversed thousand seperator and decimal. That is UiPath will need it in the following format: 55,358.61. My culture is Danish and I face the same “problem” as you.
Here is, how we solve it:
We have two variables: Amount (String) = “55.358,61” and Value (Double)
First we convert our Amount to a double and “tell” UiPath, that we use another culture in our UI.
Assign: Value = Convert.ToDouble(Amount, system.Globalization.CultureInfo.InstalledUICulture)
Then we can do our calculation:
(Value*-1).ToString
With this following alternates you can take control on it:
first line: we can set the Culture which are to apply (I am forcing to spanish, but my locals are different)
second line: we can check if the value is parseable or not
Another option to take didicated control on it is using the Numberformat isolated:
Creation
Configuration:
nfi2.NumberDecimalSeparator
nfi2.NumberGroupSeparator
Usage:
@Angel_Llull
Perfect, I am happy that it is working.
May I ask you to set back the solution flag back to @AndersJensen as he inital brought the essentials into the discussion. Thanks