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
shaunguyver
Helper III
Helper III

Filter dates in table to show dates older than 30 days

I have a table with dates, and I want to filter the table to only show values where the date is older than 30 days (as of today). How do I do this?

1 ACCEPTED SOLUTION
DoubleJ
Solution Supplier
Solution Supplier

Hi

You can add a calculated column to your dates table with a formula that checks whether the day falls within the last 30 days. You can then filter your visuals with this column.

 

Last30Days = 
IF(
    DATEDIFF(Dates[Date],TODAY(),DAY) <=30,
    TRUE(),
    FALSE())


Last30Days.png

Hope this helps (if so please give a kudo)
JJ

 

 

View solution in original post

3 REPLIES 3
DoubleJ
Solution Supplier
Solution Supplier

Hi

You can add a calculated column to your dates table with a formula that checks whether the day falls within the last 30 days. You can then filter your visuals with this column.

 

Last30Days = 
IF(
    DATEDIFF(Dates[Date],TODAY(),DAY) <=30,
    TRUE(),
    FALSE())


Last30Days.png

Hope this helps (if so please give a kudo)
JJ

 

 

Thanks for the suggestion - I've tried to do this, but when I input the formula I get the following error message:

 

"Expression error: The name 'IF' wasn't recognized. Make sure it's spelled correctly."

 

Any idea why? I can't seem to find another way of doing this

Hi,

The formula suggested is a measure.  Go to Modelling > New Measure.  You are writing that formula in the Query Editor.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

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.

Top Solution Authors