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.
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.