Hai, can anyone help me to write formula but based on single select column.
If single select = Kg will be multiply 1 ( * 1)
then If single select = Box will be multiply 5 (* 5)
and then if single select = 200 gram will be divide 5 (/ 5)
Page 1 / 1
Hi Lucas. You want to use the SWITCH statement. Something like that below should work.
IF(AND({Jumlah (Kg)},Unit),
SWITCH(Unit,
"Kg", {Jumlah (Kg)},
"Box", {Jumlah (Kg)} * 5,
"200grm", {Jumlah (Kg)} / 5
)
)
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.