Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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)