Forum Discussion
sahubibhuti45
2 years agoHelper I
Creating 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
2 years agoSuper User
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]
)
)
- sahubibhuti452 years agoHelper I
Hi , This query is not giving any error but also not giving any data.