This is what comes out when I try to use [Bilangan Tanggungan]>0
Arithmetic expression โ([Bilangan Tanggungan] > 0)โ does not have valid input types
Are both you spreadsheet and appsheet column type formatted to number?
I have run into a similar issue and was wondering if you ever found the solution? I am getting the same error. My app and spreadsheet are both formatted to numbers.
I have tried the IF expression and also the IFS and AppSheet doesnโt like โ>โ input, but it will take โ=โ or โ<>โ.
Hi @JTWhite6789
make sure numbers type are equals.
Keep in mind that Number is different from Decimal.
If you wish to compare with a decimal, remember to add a dot to explicit that.
For example:
IF([thisDecimal]>0.0, ResultIfTrue, ResultIfFalse)
Thank you for the quick response. I did verify column types in both the spreadsheet and app to confirm they matched. I also removed some " " around the >=number and now it seems to be working.
My final expression (for future reference) is
IF([ColumnA] >= 500000, โYesโ, โNoโ)
Glad you made it.
For your information, this:
IF([ColumnA] >= 500000, โYesโ, โNoโ)
can also be written, if itโs in a Yes/No column, simply:
[ColumnA] >= 500000
No need to use an IF statement for simple cases
Thanks.
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |