Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello!
I haven't quite be able to find a solution that fits my need, if there is one already please point me to it and apologies for the duplication!
I have a dashboard with two plots - one shows a number of new things created in a month and another shows a number of things that were created anytime before the same month that are still open (ongoing things). I'd like to allow the user to select a month and update both plots.
As an example, take the image below, I have April selected.
The left plot shows new things, Date filter = [4/1/2021 - 4/30/2021]
The right plot shows ongoing things, Date filter = before 4/1/2021
Is there a way to do this with a single month slicer exposed to the user as shown below?
EDIT: I want to add some context. I mocked up some data to show what I'm trying to do and where I'm at. The first set of pie charts (on the left) are what I want to see, I created these by manually filtering the visuals. The second set of pie charts are both using the Date slicer in the middle. So when I filter for 2021-04 the top chart is correct. For the bottom chart, the total count is correct but the categories don't work. The measure I'm using the for the bottom right chart is as follows:
Measure =
var _min = MINX(ALLSELECTED('Table'), 'Table'[Date])
RETURN
CALCULATE(DISTINCTCOUNT('Table'[ID]), FILTER(ALL('Table'), 'Table'[Date] < _min))
Solved! Go to Solution.
Hi @amhiggins
Not clear how your data model and table structure look like, so I create a sample:
You may take steps for reference:
Create the measure:
secondmeasure =
VAR _max =
SELECTEDVALUE ( 'Table'[orderdate] )
RETURN
CALCULATE (
SUM ( 'Table'[salestotal] ),
FILTER (
ALL ( 'Table' ),
'Table'[orderdate].[Year] = YEAR ( _max )
&& 'Table'[orderdate] >= 1
&& 'Table'[orderdate] <= _max
)
)Result:
When you select 2020.2, secondmeasure counts total during 2020.1-2020.2
When you select 2021.05, secondmeasure counts total during 2021.1-2021.5
Hope it helps.
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @amhiggins
Not clear how your data model and table structure look like, so I create a sample:
You may take steps for reference:
Create the measure:
secondmeasure =
VAR _max =
SELECTEDVALUE ( 'Table'[orderdate] )
RETURN
CALCULATE (
SUM ( 'Table'[salestotal] ),
FILTER (
ALL ( 'Table' ),
'Table'[orderdate].[Year] = YEAR ( _max )
&& 'Table'[orderdate] >= 1
&& 'Table'[orderdate] <= _max
)
)Result:
When you select 2020.2, secondmeasure counts total during 2020.1-2020.2
When you select 2021.05, secondmeasure counts total during 2021.1-2021.5
Hope it helps.
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
@amhiggins , Assume if date is joined to the table, you are displaying a measure that will filter on selected dates
second one you can use this measure
new measure =
var _max = maxx(allselected('Date'), 'Date'[Date])
var _min = minx(allselected('Date'), 'Date'[Date])
return
calculate([Measure],filter('Date', 'Date'[Date] =_min))
I was able to use a form of this measure to get an accurate total but it doesn't work with the colors on the donut chart. It sets each of the colors to 25%.
For reference, this is the measure I implemented to get the total:
New measure =
var _max = MAXX(ALLSELECTED(table), table[Date].[Date])
var _min = MINX(ALLSELECTED(table), table[Date].[Date])
return
CALCULATE(DISTINCTCOUNT(table[id]), FILTER(ALL(table), table[Date].[Date] < _min))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.