Hey folks,
im using the Read Cell activity to get a value from an excel, save it into a variable and later post it via the Type into activity. So far it’s working great for excel cells that contain text but now I encountered one that contains a number. It seems like UIPath is interpreting the number as a double instead of a string, resulting in an exception (Message: StringConverter cannot convert from System.Double).
Is there a way to cast the output argument (Result) of the Read Cell activity into a String and assign it to my variable?
Basically looking for something like: MyVar = Converter.toString(Result)