Hello, I have a problem with the argument, I’m trying to convert from integer to string as it says in the error, but I don’t really know where. Do you have any idea?
Check the data types of your variables and arguments. Ensure that you’re passing the correct data type (e.g., string or integer) to activities that expect a particular type.
Hello @Szymon_Turcza
- Check the data type of the integer variable (e.g.,
numerRewolucji
). - Use the
ToString
method to convert it to a string, like this:numerRewolucji.ToString()
. - Ensure you use the converted string where needed in your workflow.
- Debug to identify the exact location of the error.
Thanks & Cheers!!!
Check the datatype of the argument.It is expecting a string instead of integer.
Hope it helps!!
Hi
Check the data type of your variables and arguments. you are passing the correct data type of integer or String
then use assign activity and assign the value strvalue = int_var_name.ToString
Thank you