Forum Discussion
Proquation
3 years agoFrequent Visitor
Date Slicer Format / Date Retrieval
Hi there, I have a date slicer setup. It is in the form dd/mm/yyyy. I also want to display the start and end date into a Title. So I have created a measure with the following DAX: StartDate...
lbendlin
3 years agoSuper User
StartDate = CALCULATE ( MIN ( [date] ), ALLSELECTED ( [date] )
looks like you are mixing the concepts of a measure, a column and (potentially) a table.
Measures require table references when pointing to columns.