Forum Discussion
michael_knight
6 years agoPost Prodigy
Scorecard/League Table Help
Hi, I'm wanting to create a league table/scorecard and I'm having problems with the DAX. I've gone for a IF statement but I'm not sure it will work because it won't be an accumulation of all the ...
- 6 years ago
Try this:
Score Card = ([OS] * 2) + ([DP] * 3) + ([C] * -1) + ([DS] * -2) + 'Appointment - Measures'[Appointments]
tex628
6 years agoCommunity Champion
Try this:
Score Card =
([OS] * 2) +
([DP] * 3) +
([C] * -1) +
([DS] * -2) +
'Appointment - Measures'[Appointments]michael_knight
6 years agoPost Prodigy
Perfect, thank you very much tex628