Forum Discussion

hulk_deka's avatar
hulk_deka
Frequent Visitor
4 years ago
Solved

NESTED IF

ifmeasure =
IF( [cost] =0, [measure1],
IF ([cost]<>0, [measure2]
)
)


this code should be returning two different values depending on the cost but it always ends up taking up only the first measure.

would be great if i could have some guidance over it