Forum Discussion
Anonymous
5 years agoNot applicable
How to display the filter date range by using Measure
Hi,
I would like to create a measure to display my filtered date range.
But the below date is not working. Please help.
Date Range = "From " & FIRSTDATE('Table'[Date]) & " To " & LASTDATE('Table'[Date])1 Reply
- amitchandakSuper User
Anonymous , Try like
Date Range = "From " & minx(allselected('Table') ,'Table'[Date]) & " To " & maxx(allselected('Table') ,'Table'[Date])