The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Source.name | Incident Number | Incident Stat |
14-01-2023 | 1 | progress |
19-01-2023 | 5 | closed |
21-02-2023 | 1 | closed |
Solved! Go to Solution.
@campelliann , Create two measures like
Rank = rankx(filter(Incidents, Incidents[Number]=Earlier(Incidents[Number])),Incidents[Source.Name])
Previous Status = Maxx(filter( Incidents, Incidents[Number]=Earlier(Incidents[Number]), [Rank] = earlier([Rank]) -1), [Status])
@campelliann , Create two measures like
Rank = rankx(filter(Incidents, Incidents[Number]=Earlier(Incidents[Number])),Incidents[Source.Name])
Previous Status = Maxx(filter( Incidents, Incidents[Number]=Earlier(Incidents[Number]), [Rank] = earlier([Rank]) -1), [Status])
Yep exactly what I did 🙂