Force Currency Input to Accept only Positive Values

Hello,

I’m using a Currency Input field inside a form and want it to accept only values that are greater than 0.
I thought I could use the “Valid” property to specify the condition.

But for some reason, I cannot seem to use {{CurrencyInput1.value>0}}
The CurrencyInput data object is not available in the dropdown.

image

Is there an alternate way to do it?

@innomalous The property to use is text . i.e

{{CurrentcyUnitCost.text > 0}}

That was surprisingly simple. :grin:
Thanks a bunch.