Less than and Greater than Formula

Hi,

I need your help regarding how to use “less than and greater than” in AppSheet. I tried a common way but I got an error. I want to compare if the value of the [Score A] column is greater than or equal to 1.2M. Here’s my expression :

Solved Solved
0 2 1,987
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

H i @Cyrine_Mae_Mendoza,

It’s seems the output of your expression is numeric.
But, your column type is Text.

You can either change your column type as Number, or change the output in your IFS expression with

IFS(
   [Score A]>=12000000,"20",
   ...
)

Moreover, maybe you will want to check the column type of [Score A], I suspect it’s not a number nor a decimal ?

EDIT : compare Numbers with Numbers, and Decimals with Decimals
Decimal have dot, like 120000.0

View solution in original post

2 REPLIES 2