Forum Discussion
meowster
3 years agoFrequent Visitor
Lookup date value applied on filter not working
Hello, I am trying to use a date value from lookup as a variable for a filter but it doesn't seem to work. My DAX formula is shown as below: Table = VAR SelectedSalesDate = LOOKUPVALUE( ...
- 3 years ago
You can't use SELECTEDVALUE when creating a table. Calculated tables are only calculated during data load or refresh, so they don't pay any attention to slicers or filters. If you need something to react dynamically to filters or slicers you need to do it in a measure.
johnt75
Super User
3 years agoYou can't use SELECTEDVALUE when creating a table. Calculated tables are only calculated during data load or refresh, so they don't pay any attention to slicers or filters. If you need something to react dynamically to filters or slicers you need to do it in a measure.