HOW TO App Formula for column CATEGORY (Text)

 

sabar_0-1699085702899.png

 

Hello fellow AppSheet users,

I am having some trouble with my formula appsheet. How to set app formula for column category based on table. Tq

Solved Solved
0 7 255
1 ACCEPTED SOLUTION

Something like..
LOOKUP(
MAXROW("TableName","BMI",
AND(
[Age]=[_THISROW].[Age],
[BMI]<=[_THISROW].[BMI]
)
),
"TableName","KeyColumn","Category")

View solution in original post

7 REPLIES 7

Something like..
LOOKUP(
MAXROW("TableName","BMI",
AND(
[Age]=[_THISROW].[Age],
[BMI]<=[_THISROW].[BMI]
)
),
"TableName","KeyColumn","Category")

LOOKUP(
MAXROW("tableName","BMI",
AND(
[Age]=[_THISROW].[Age],
[BMI]<=[_THISROW].[BMI]
)
),
"TableName","Age","Category")

Tqtq...but the answer always = "underweight"

Is your BMI column type in both tables a number? Is the formula reading the data from a correct table?

BMI column type decimal..I change to type number but the answer still "underweight"

What is your formula exactly, and the table name where you have those base values?

sabar_0-1699167918875.png

Tq Mr AleksiAlkio for your help...i'm wrong input "keycolumn" ...

 

 

 

You're welcome!

Top Labels in this Space