Forum Discussion
altesv
8 years agoFrequent Visitor
How to have card retrieve minimum and maximum date from date filter
Hi I am using the card visual as a title for a dashboard. Let's say my data is filtered to included 1/1/2018 - 7/31/2018.
I use the following dax for my title measure:
Title = "Report for "&CONCATENATEX(VALUES(Table[Date]),Table[Date]
But when I do this, the title appears as: "Report for 1/1/2018,1/2/2018,1/3/2018..."
The way I would like it to appear is: "Report for 1/1/2018 - 7/31/2018"
Any ideas on how to achieve this?
What if you simply use MIN and MAX
Title = "Report for " & MIN ( Table[Date] ) & " - " & MAX ( Table[Date] )
1 Reply
- Zubair_Muhammad
Community Champion
What if you simply use MIN and MAX
Title = "Report for " & MIN ( Table[Date] ) & " - " & MAX ( Table[Date] )