Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a date slicer in my report, i want data for some visuals related to the maximum date selected in range from date slicer. I cannot see any option to have data on that specific date. Right now, for all visuals it is taking cummulative data of whole date range selected. How to achieve this?
How can we filter dataset in powerbi using this maxDate?
To get the maximum date selected in the slicer, use the DAX
maxDate = CALCULATE(MAX(Table[Date]), ALLSELECTED(Table[Date])), which you can use directly as a filter on the visual if there is a relationship, or as a filter argument.