Problem with argument value

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?

Hi @Szymon_Turcza

Try this

strVariable = intVariable.ToString

Hi @Szymon_Turcza

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

  1. Check the data type of the integer variable (e.g., numerRewolucji).
  2. Use the ToString method to convert it to a string, like this: numerRewolucji.ToString().
  3. Ensure you use the converted string where needed in your workflow.
  4. Debug to identify the exact location of the error.

Thanks & Cheers!!!

Hi @Szymon_Turcza

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