Forum Discussion
paolom
6 years agoNew Member
IF - column as logical test
Hello Everyone, I need to use a column as logical test in a IF formula (in a measure) but... It doesn't work. EX. IF( CLIENT[Category]="C"; sum(...);;) No suggestion appeare if I try to w...
Greg_Deckler
Community Champion
6 years agoYou need to use aggregation for columns in a measure, like:
IF( MAX(CLIENT[Category])="C";