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! Go to Solution.
Something like..
LOOKUP(
MAXROW("TableName","BMI",
AND(
[Age]=[_THISROW].[Age],
[BMI]<=[_THISROW].[BMI]
)
),
"TableName","KeyColumn","Category")
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?
Tq Mr AleksiAlkio for your help...i'm wrong input "keycolumn" ...
You're welcome!
User | Count |
---|---|
15 | |
10 | |
6 | |
5 | |
5 |