Forum Discussion
eaj
2 years agoHelper I
Creating a Report Page with Department Comparison Using a Slider
I'm working on setting up a report page where users can select specific departments to compare against the rest. The idea is to use a slicer to pick certain departments, which would then be grouped i...
raji_n
2 years agoResolver II
I have created two tables
Measure1 = IF(ISFILTERED('Table (2)'[Column1]),IF(MAX('Table'[Column1]) in ALLSELECTED('Table (2)'[Column1]),1,0))
Measure =
IF([Measure1]=1,"GR1","GR2")
- eaj2 years agoHelper I
Thanks, this might be my lack of experience talking, but if it is a measure, how do I get lets say total revenue for group 1 and 2. I can't filter on measures, right?
Doesn't it have to be some calculated column in my main department table?