Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi, I'm currently using a calculation group as a page filter so that all components are filtered by a 12-month period, using the end date of the date slicer (a 'Date Selection' table just used for parameter selection) that filters on the main date table ('Date') used by all the measures
VAR EndDate = EOMONTH ( MAX ( 'Date Selection'[Date] ), 0 )
VAR StartDate = EDATE (EndDate, -12 )
RETURN CALCULATE ( SELECTEDMEASURE (), FILTER ( 'Date', 'Date'[Date] <= EndDate && 'Date'[Date] > StartDate ) )
Everything works well. However, I've noticed weird behaviour with some calculated measures. If I have a chart with dates on the x-axis, it will show only 12 months for everything except for measures that are manipulated in specific ways. For instance, if I create a measure with just a constant:
Test Measure = 5
And then plot it on a chart with time on the x-axis, it will show all dates instead of just 12 months. However, if I do something like this:
Solved! Go to Solution.
Items that are not connected to your data model (like your Test Measure) will also not be impacted by filter context. That means if you include these items in your visuals you create cartesian products.
As soon as you tie these items into your data model they will be subject to the filter context and join rules.
Items that are not connected to your data model (like your Test Measure) will also not be impacted by filter context. That means if you include these items in your visuals you create cartesian products.
As soon as you tie these items into your data model they will be subject to the filter context and join rules.
User | Count |
---|---|
123 | |
76 | |
63 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |