Forum Discussion
Slicer Selection , define specific value selected
Hi
I have a Slicer called Month , Jan to Dec values
Sections of my dash board I only want to illustrate the month based on the Slicer selction and exclude Dec; this is working, (filter: Month not in Dec) -- this is a single months data (Based on Silcer selection)
Other sections , Charts , I want to illustrate Dec regardless of Slicer selection inaddition to the Silcers selection
Chart will illustrate Dec and Jan (if Jan selected) -- this is a single months data (Based on Silcer selection) in addtion to Dec
At the moment to get the result I need , the user has to Multi select the month i.e. Jan and December using CTRL key
Ideally if the user could just do a single select on the Month they wish to illustrate and Dec is also shown in selected charts
So far I do not think this is possible?
Slicer: Always have one Value selected regardless of addtional selections
Chart: Always illustrate Data of a specific month , regardless of Slicer Month Selection
2 Replies
- JarroVGITResident Rockstar
It is possible, but you'll need to create a measure that displays only the DEC values. When you add the value column (where your slices will work it's magic) and the december measure, your users wouldn't need to select the DEC seperately.
- carlolResolver I
I have the two measures
Measure % -- Returns % based on Slicer Selection
% = Round(Divide(SUM('IHFD vwKPI'[Numerator]),SUM('IHFD vwKPI'[Denominator])),2)Measure %Dec -- Returns % based on Month = Dec
%Dec= CALCULATE(Divide(SUM('IHFD vwKPI'[Numerator]),SUM('IHFD vwKPI'[Denominator])),FILTER(ALL('IHFD vwKPI'[Month]),'IHFD vwKPI'[Month]="Dec"))Issue: I want to display this in a bar chart but only one measure is allowed to be defined as the value
Trying to figure out how to group these into one Measure