Hello!
I am building a flow based on a form response. One of the fields in the form is a number value that will contain decimal points. For example, 100.01. I am trying to add a condition that if the value is over 100, then it will proceed. There are no symbols in the response apart from the decimal point, and no letters.
The problem - it is not registering it as an integer. I have tried a few things to get it to convert, none have worked.
This is what I have tried, all in an operation action -
- formatNumber(int(MYINPUT))
- formatNumber(int(MYINPUT),'0')
- int(formatNumber(MYINPUT))
- the above, but separated in 2 different operation actions.
Each time I am getting an error that it is expecting a integer value and getting a string.