Forum Discussion
user900
3 years agoHelper II
Chart Help
I have a data file that shows User Name, Status and Department. Using the stacked bar chart, I'm showing the Department on the Y-Axis, count of Users on the X-Axis and Status as legend. I need to al...
user900
3 years agoHelper II
Total values =
SWITCH(
SELECTEDVALUE('LOB order'[Line of Business]),
"Enterprise-Wide", COUNTROWS('Colleague Data'),
COUNTROWS(
FILTER('Colleague Data', 'Colleague Data'[Line of Business] in VALUES('LOB order'[Line of Business])
)
)
)