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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
AlessandroBet
Helper V
Helper V

Set a filter with a date created with measure

Hi,

 

i need to set a filter with a date created with measure.

ex: Today +90 = TODAY()+90

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

If you have a date table, you can use something like:
DateFilter = IF(SELECTEDVALUE(DateTable[Date]) <= TODAY()+90, 1)

and use this in your filters (both through the filter pane by dragging the measure into the pane, or as a calculate parameter)

View solution in original post

3 REPLIES 3
AlessandroBet
Helper V
Helper V

What i need is to set a date +90days and this filter has to change every day reading the date of today

AlessandroBet
Helper V
Helper V

thank you i did it but i can't use it as filter

vicky_
Super User
Super User

If you have a date table, you can use something like:
DateFilter = IF(SELECTEDVALUE(DateTable[Date]) <= TODAY()+90, 1)

and use this in your filters (both through the filter pane by dragging the measure into the pane, or as a calculate parameter)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors