Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have to show trend for last 13 months.
Data I have is at weekly level (first day of week).
Through the slicer when a month is selected, the visual should show the current month in terms of weeks and then the previous 12 months as month ends data.
Can someone please help me on how to go about it.
Thanks,
Solved! Go to Solution.
Hi @kruzack ,
Please have a try.
Create a measure.
Last 13 Months =
VAR SelectedDate = MAX(Calendar[Month])
VAR DateDiff = DATEDIFF(Sales[Date], SelectedDate, MONTH)
RETURN
IF(DateDiff <= 0 && DateDiff > -13, 1, BLANK())
Solved: Show last 13 months based on user single slicer se... - Microsoft Fabric Community
Show last 13 Months from Slicer Selection in Power BI (DAX) - YouTube
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kruzack ,
Please have a try.
Create a measure.
Last 13 Months =
VAR SelectedDate = MAX(Calendar[Month])
VAR DateDiff = DATEDIFF(Sales[Date], SelectedDate, MONTH)
RETURN
IF(DateDiff <= 0 && DateDiff > -13, 1, BLANK())
Solved: Show last 13 months based on user single slicer se... - Microsoft Fabric Community
Show last 13 Months from Slicer Selection in Power BI (DAX) - YouTube
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |