Hello,
I have a formula which is a boolean type. I currently using this:
If 1>0 then-1 //Trueelse0 //Falseendif
Is there a constant I can use for True and False instead of -1 and 0?
Thanks,
Michael
Hi @mstoler
You can use "True" and "False" as well.
Cheers
In this case, you can just use:
1 > 0
for this and it will return the True or False appropriately