Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I need to visualize the last date per categorie. When I do a Max(date[date[), it will show the last date of my date dable, that is somewhere in 2027. I need to know per categorie which day the last run was. Someone has any clue how to get to this point?
Solved! Go to Solution.
This is how you get the latest date that's in the current context:
[Latest Date] =
MAXX(
SUMMARIZE(
FactTable,
DateDimension[Date]
),
DateDimension[Date]
)
// or even simpler...
[Latest Date] = MAX( FactTable[Date] )
// where the Date field is the one
// that joins the fact table and
// the dim.
Hi,
Thanks for your comment. Tried that but it gives me the last value of my date table.
@Samarth_18 yes, that is correct. If i try it with 'pipeline run' from the fact table', it doesn't work either.
This is how you get the latest date that's in the current context:
[Latest Date] =
MAXX(
SUMMARIZE(
FactTable,
DateDimension[Date]
),
DateDimension[Date]
)
// or even simpler...
[Latest Date] = MAX( FactTable[Date] )
// where the Date field is the one
// that joins the fact table and
// the dim.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |