Forum Discussion
sahubibhuti45
Helper I
2 years agoCreating a table based on selection date
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 d...
Sahir_Maharaj
Super User
2 years agoHello sahubibhuti45,
For the FilteredTable measure, can you please try the following:
FilteredTable =
CALCULATETABLE(
'RATE LIST',
FILTER(
ALL('RATE LIST'),
'RATE LIST'[RTLIST_DATE] = [maxdateslicer]
)
)
- sahubibhuti452 years ago
Helper I
Hi , This query is not giving any error but also not giving any data.