Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi. Kindly asking for help: I have a chart with x-axis as months. I want to show only 6 months worth of records here but it should be dependent on the selected slicer. ex: Selected on slicer is Sep'19 the chart should show Apr'19-Sep'19; but when we select Aug'19 on the slicer chart axis to show Mar'19-Aug'19. Hope you can assist. Thanks!
Solved! Go to Solution.
Hi @Anonymous,
You may refer to the post below to create a disconnected table for your slicer and then create a measure based on that selection.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
First you should create a calendar table and use it as a slicer, then create a measure.
1. calendar table
DimDate = ADDCOLUMNS(CALENDAR("01/01/2018","31/12/2019"),"Month - Year", FORMAT([Date],"mm - yy"),"SortMonth",FORMAT([Date],"yyyymm"))
2.use it as a slicer
3. create a measure
Sales last 6 months =
CALCULATE (
SUM ( Sales[Sales] ),
FILTER (
ALL ( Sales[Date] ),
Sales[Date] <= MAX ( DimDate[Date] )
&& Sales[Date] >= EDATE ( MAX(DimDate[Date]), -6 )
)
)
Here is the .pbix
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
First you should create a calendar table and use it as a slicer, then create a measure.
1. calendar table
DimDate = ADDCOLUMNS(CALENDAR("01/01/2018","31/12/2019"),"Month - Year", FORMAT([Date],"mm - yy"),"SortMonth",FORMAT([Date],"yyyymm"))
2.use it as a slicer
3. create a measure
Sales last 6 months =
CALCULATE (
SUM ( Sales[Sales] ),
FILTER (
ALL ( Sales[Date] ),
Sales[Date] <= MAX ( DimDate[Date] )
&& Sales[Date] >= EDATE ( MAX(DimDate[Date]), -6 )
)
)
Here is the .pbix
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks. Will surely try this.
Hi,
See if my solution here helps - Flex a Pivot Table to show data for x months ended a certain user defined month.
Hi @Anonymous,
You may refer to the post below to create a disconnected table for your slicer and then create a measure based on that selection.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks. will check this.
User | Count |
---|---|
98 | |
76 | |
69 | |
53 | |
27 |