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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have a rate list history table which is having day level data. I want to create anew table from the rate list table by using a dax which will give me the table based on a maximum slicer selection date.
I have used the below dax functions
for getting the maximum of slicer selection date i am using the below dax
Hello @sahubibhuti45,
For the FilteredTable measure, can you please try the following:
FilteredTable =
CALCULATETABLE(
'RATE LIST',
FILTER(
ALL('RATE LIST'),
'RATE LIST'[RTLIST_DATE] = [maxdateslicer]
)
)
Hi , This query is not giving any error but also not giving any data.