multiple if condition

hi everybody;

how can i do this if condition in app?

1<= [value] <=5            product will be 14

5< [value] < 15                      product will be 20

15<= [value] < infinity            product will be 26

Solved Solved
1 6 160
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

 

IFS(
  AND((1 <= [value]), ([value] <= 5)), 14,
  ([value] < 15), 20,
  TRUE, 26
)

 

View solution in original post

6 REPLIES 6

use IFS()

for example:

ifs(and(1<= [value], [value] <=5),14,(and(5< [value] ,[value] < 15 ),20,(and(15<= [value],[value] < infinity ),26)

it does not work 

Steve
Platinum 4
Platinum 4

 

IFS(
  AND((1 <= [value]), ([value] <= 5)), 14,
  ([value] < 15), 20,
  TRUE, 26
)

 

thank you 🙂

EN TODO HASTA A MI ME AYUDO GRACIAS

Top Labels in this Space