Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 filter to show most recent day, after refresh.
Can I do this while keeping all the other days. In the tick box of the slicer?
Thanks
Solved! Go to Solution.
@Stuartm1983 Create a colum like:
Column =
VAR __Max = MAX('Table'[Date])
RETURN
IF([Date]=__Max,"Latest",[Date] & "")
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
@Stuartm1983 Create a colum like:
Column =
VAR __Max = MAX('Table'[Date])
RETURN
IF([Date]=__Max,"Latest",[Date] & "")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |