BPM error CS0019: Operator '==' cannot be applied to operands of type 'bool' and 'int'

Has anyone run into an error when creating a BPM and trying to use the Number of rows in the __query is more than or equal to 1 condition to evaluate whether or not a checkbox is checked as true, and having the following error appear? Have never run into this before and don’t know if it’s due to recent Cloud upgrade.

cs(73,24): error CS0019: Operator ‘==’ cannot be applied to operands of type ‘bool’ and ‘int’

Are you checking if the checkbox is:
= true
Or
= 1
It should be true and not 1 in a BPM.

1 Like

I was using TRUE instead of true (lowercase), not realizing it was case sensitive.

4 Likes