I have an edit form and Im trying to hide the form submit button using an if statement in the visible property.
I have tried both of these unsuccessfully:
If(DataCardValue14 > 0, true, false)
&
If(DataCardValue14.value > 0, true, false)
what am I doing wrong?