
Announcements
Looking for brains trust help.
I have a string variable that I want to update into a number SQL field via Insert Row (v2)
What expression should I be using?
Hi @KarlNixon ,
Please try the following expression:
int(variables('string')) or float(variables('string'))
Image reference:
You only need to use variables('VariableName') to get the value of the variable, then use int()/float() function to format string to number.
Please take a try.
Best Regards,