Forum Discussion
Anonymous
6 years agoNot applicable
If statement using or
Hi, Have the below measure. It returns the number 6 if conditions are met. This is what i want. ScoreM = VAR conscore = IF([8 Wks Con] = 7 && [8 Wk Avg] > 20,6) Return conscore Howev...
- Anonymous6 years ago
Arrh yes. I normally use ';' but then you should just adjust the measure:
scoreM = IF([8 Wks Con] = 7 && [8 Wks Avg] > 20, 6, IF([8 Wks Con] = 6 && [8 Wks Avg] < 20, 1, BLANK()))
Anonymous
6 years agoNot applicable
Arrh yes. I normally use ';' but then you should just adjust the measure:
scoreM = IF([8 Wks Con] = 7 && [8 Wks Avg] > 20, 6, IF([8 Wks Con] = 6 && [8 Wks Avg] < 20, 1, BLANK()))
Anonymous
6 years agoNot applicable
Yeah, that works a treat. Thanks a million.