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! Request now
Hi,
I have a SharePoint folder connected data model with a table that has a load of excel files that are added every week. The table looks like this:
Now I would need to make a customn column named "Removed" that shows the datekey when a particular technology is no longer found. For example the technologies Windows Server, Windows Server 2012 and RHEL 6 are still included in date 12.12.2023 but are not present in date 19.12.2023.
I would like the custom column Removed to show data like this:
Is this possible? Thanks in advance!
Solved! Go to Solution.
@mattih , A new column
Removed =
var _max = minx(filter(Table, [System] = earlier([System]) && [DateKey] > Earlier([DateKey])), [DateKey])
return
if(isblank(minx(filter(Table, [System] = earlier([System]) && [Technology] = earlier([Technology]) && [DateKey] =_max ), [DateKey])), _max, blank())
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
https://www.youtube.com/watch?v=cN8AO3_vmlY&t=17820s
@mattih , A new column
Removed =
var _max = minx(filter(Table, [System] = earlier([System]) && [DateKey] > Earlier([DateKey])), [DateKey])
return
if(isblank(minx(filter(Table, [System] = earlier([System]) && [Technology] = earlier([Technology]) && [DateKey] =_max ), [DateKey])), _max, blank())
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
https://www.youtube.com/watch?v=cN8AO3_vmlY&t=17820s
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 |
|---|---|
| 99 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |