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 m...
  • amitchandak's avatar
    4 years ago

    hulk_deka ,

    IF( [cost] =0 ||  isblank([Cost]) , [measure1],[measure2]
    )