Forum Discussion
Anonymous
4 years agoNot applicable
select most recent date from filter
Hi, I have an automated report which updates each day. I want it to keeo every day of data within the report so it can be selected by the consumer. However I also want to update the filte...
- 4 years ago
Anonymous Create a colum like:
Column = VAR __Max = MAX('Table'[Date]) RETURN IF([Date]=__Max,"Latest",[Date] & "")
Anonymous
4 years agoNot applicable
Hi,
You can create measure as follow:
Latest_Date = MAX(Date_Table[Date])
Add KPI and drag-and-drop this measure to see latest date