Forum Discussion
hulk_deka
4 years agoFrequent Visitor
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 m...
- 4 years ago
IF( [cost] =0 || isblank([Cost]) , [measure1],[measure2]
)
hulk_deka
4 years agoFrequent Visitor
Much thanks for the quick solution.