Request clarification before answering.
you need to use semicolon instead of comma in the formula.
=if([object]>500; “G”)
or another way to write if else statement
=if([Object]>500) then “G”
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
zulo
This should work, but make sure your object is a numeric type. If it is a string, you will need to convert it to a number first. Try using the following syntax:
=if(tonumber([object]) > 500, "G", "")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you both, I figures that value was string, so =If(ToNumber([object]) > 500; "G") works with semicolon.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.