Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Guys,
I have a scenario wherein the selected value in the slicer has to be the current month and previous month. For example, if the users are checking currently, Sep 2020 and Aug 2020 has to be the default selections. In the next month, it has to be Oct 2020 and Sep 2020.
The below displayed is the data for reference.
Month | Sales |
Jan-20 | $1,346,931 |
Feb-20 | $242,824 |
Mar-20 | $1,543,120 |
Apr-20 | $286,320 |
May-20 | $1,296,335 |
Jun-20 | $1,991,486 |
Jul-20 | $1,237,445 |
Aug-20 | $680,516 |
Sep-20 | $1,284,505 |
Thanks for the help!
@Arunraj89 , In you date table you need to have a column like this and select "Last 2 Months". Month year is column you already have for month year
Month Type = Switch( True(),
Date([Date]) >= eomonth(Today(),-2)+1 && Date([Date])<= eomonth(Today(),0),"Last 2 Months" ,
[Month Year]
)
Thank Amit! But, the client wants to see the name of months in Slicer. If i use the solution that you gave, i will be seeing "Last two months" and name of other months as items in the slicer. @amitchandak
hi @Arunraj89 - There is no out of the box feature in Power BI to automatically set the latest month in a date slicer.
You would need to follow the approach of creating a calculated column with a value like "Current month" or "Last 2 months" and setup the report as seen in the below video:
https://www.youtube.com/watch?v=pCgK-Ze3nhA
Please mark the post as a solution and provide a 👍 if my comment helped with solving your issue. Thanks!
Proud to be a Super User!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
85 | |
60 | |
45 | |
41 | |
39 |