Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bvy
Helper V
Helper V

Add "Last X Days" options to report

My Power BI report feeds off of one table which has, among other fields: 
TimeStamp
Reading

I use a line chart to plot Reading values over time -- so TimeStamp is on the x axis. 

Since there's a lot of history, users are requesting some shortcut options:

(_) Last 7 days
(_) Last 30 days
(_) Last 90 days
(_) All time

Ideally these option would show up in a single-select slicer. When selected, the data set and visual would filter down to the date range selected. 

I was able to easily implement one such option by adding this measure to my table: 

Last7Days =
VAR _max = MAX(Table1[TimeStamp])
RETURN IF((Table1[TimeStamp] > _max - 7) && Table1[TimeStamp] <= _max, "Last 7 Days")

I can put that in a slicer by itself and when the user clicks the checkbox, the visual filters to show just the last 7 days. 

How can I implement more such options and make them mutually exclusive? 

1 REPLY 1
AllisonKennedy
Super User
Super User

@bvy  You can create a parameter table that has two columns:

* the text labels (ie "Last 7 days")

* the days to filter (ie Today -7) 

 

Then follow a similar method to this: https://excelwithallison.blogspot.com/2021/08/categorical-date-slicer-in-power-bi.html 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.