Select latest date in Slicer

Hi @Anu,

Create a measure like this to harvest the latest date from a slicer:

Date Harvest Max = 
    CALCULATE(
        MAX( Dates[Date] ),
        ALLSELECTED( Dates[Date] )
    ) 

.
and check out this resource

I hope this is helpful.