Forum Discussion
Filter Out Future Quarters in Matrix Visual
- 1 year ago
I found the solution. If you right-click the row, there is an option to exclude.
Hi smmcqueen
Have you tried modifying your measures to return blank for future dates?
Hidden Expense YTD =
IF(
MIN(datetable[date]) > Today(), BLANK(), [Your calculation])
Do this for all the measures, any rows that are completely Blank will be hidden by Power BI.
Alternatively you might be able to create a measure and apply a filter in the Filter pane, drag the measure in "Filters on this visual" then filter to Y.
Hide rows = IF(
MIN(datetable[date]) < Today(), "Y")
Hope this helps!
Thank you for the prompt response! I will try that and let you know if it works. Thank you!
- SamWiseOwl1 year agoSuper User
Alternatively you might be able to create a measure and apply a filter in the Filter pane, drag the measure in "Filters on this visual" then filter to Y.
Hide rows = IF(
MIN(datetable[date]) < Today(), "Y")This would only need to be done once vs once for each measure.