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 would to create a summary table using SUMMARIZECOLUMNS with filter based on selected date of a date slicer.
I created a measure (Selected End Date) for getting the MAX date of selected date range.
Selected End Date = CALCULATE(MAX('Disconnected Date'[Date]), ALLSELECTED('Disconnected Date'[Date]))
I seem to be able to get the Selected End Date to display correctly in a tile.
But the Selected End Date value seems to be incorrect when I am using it in the filter for SUMMARIZECOLUMNS query.
My base table is Machine table which has a history log of a machine inspection dates.
I want to create a Machine Summary table to select rows from Machine table which Inspection Dates are included the selected range of Date Slicer.
All tables are not joined.
Can someone help to solve the problem of not able to get the correct Selected End Date measure in the formula for creating SUMMARIZECOLUMNS?
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
The ‘Machine Summary’ table is a calculated table, and its values do not change with the slicer dynamically.
Try to create a measure like this and add it to the table visual.
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
The ‘Machine Summary’ table is a calculated table, and its values do not change with the slicer dynamically.
Try to create a measure like this and add it to the table visual.
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Lionel,
Thanks for your help!
Harry