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
Hello,
i need yout help please
I have a table that contains several refresh dates and I need to display the last item by the last start date and the end date which corresponds to it
example :
result i want
thank you for you help
Solved! Go to Solution.
hi @MagMag31
try like:
1) create a calculated table like:
Table =
ADDCOLUMNS(
DISTINCT(data[item]),
"start refresh date",
CALCULATE(MAX(data[start refresh date]))
)2) join the new table with the data table on [start fresh date] column
3) add two calculated columns like:
end refresh date = RELATED(data[end refresh date])Duration = RELATED(data[duration])it worked like:
hi @MagMag31
try like:
1) create a calculated table like:
Table =
ADDCOLUMNS(
DISTINCT(data[item]),
"start refresh date",
CALCULATE(MAX(data[start refresh date]))
)2) join the new table with the data table on [start fresh date] column
3) add two calculated columns like:
end refresh date = RELATED(data[end refresh date])Duration = RELATED(data[duration])it worked like:
it works thank you so much !
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 20 | |
| 13 | |
| 12 |