The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
i need to set a filter with a date created with measure.
ex: Today +90 = TODAY()+90
Solved! Go to Solution.
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)
What i need is to set a date +90days and this filter has to change every day reading the date of today
thank you i did it but i can't use it as filter
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)