Forum Discussion

altesv's avatar
altesv
Frequent Visitor
8 years ago
Solved

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?

  • altesv

     

    What if you simply use MIN and MAX

     

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

1 Reply

  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    Icon for Community Champion rankCommunity Champion

    altesv

     

    What if you simply use MIN and MAX

     

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