Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
altesv
Frequent 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?

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@altesv

 

What if you simply use MIN and MAX

 

Title =
"Report for " & MIN ( Table[Date] )
    & " - "
    & MAX ( Table[Date] )

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

@altesv

 

What if you simply use MIN and MAX

 

Title =
"Report for " & MIN ( Table[Date] )
    & " - "
    & MAX ( Table[Date] )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors