Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi there,
I'm hoping someone can help with this challenge, which is outside my level of knowledge with power bi.
Goal:
I have a table that provides a daily snapshot of work item IDs. Each row specifies the "Work Item ID", the "Date", and the "Parent Work Item ID" (this is the parent ID of the work item listed in the first column). What I need to do is be able to identify the most recent date before a work item's parent ID changed. This is because I'm trying to identify the most recent date that a work item had it's parent ID changed to "142395". The challenge is that during the history of a work item, it may have changed parent ID to "142395" more than once, and I need the most recent date that it did this, not the earliest (which I'm currently only able to do).
Example:
I hope that makes sense in terms of what I'm trying to achieve. I'd imagine the solution involves starting at the most recent date for each work item, traversing down each day, comparing the parent work item ID to the previous date's parent work item ID, and then returning the date before it changes to something different. But I just don't know the DAX for this.
Many thanks for any help provided.
Solved! Go to Solution.
Hi @Anonymous ,
You could achieve the result by create calculated columns as below.
Column =
CALCULATE (
MAX ( 'Table'[parent id] ),
FILTER ( 'Table', 'Table'[date] = EARLIER ( 'Table'[date] ) + 1 )
)
Column 2 =
CALCULATE (
MAX ( 'Table'[date] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[workitem id], 'Table'[parent id] ),
'Table'[parent id] <> 'Table'[Column]
)
)
Result would be shown as below.
Best Regards,
Jay
Hi @Anonymous ,
You could achieve the result by create calculated columns as below.
Column =
CALCULATE (
MAX ( 'Table'[parent id] ),
FILTER ( 'Table', 'Table'[date] = EARLIER ( 'Table'[date] ) + 1 )
)
Column 2 =
CALCULATE (
MAX ( 'Table'[date] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[workitem id], 'Table'[parent id] ),
'Table'[parent id] <> 'Table'[Column]
)
)
Result would be shown as below.
Best Regards,
Jay
Hi @amitchandak
Many thanks for your suggestion, I really appreciate the quick response.
I've tried creating and applying these measures within a table to check the result but it doesn't appear to show anything, i.e. the table is empty when I add either measure as a column in the table.
However, the other challenge is (and I should have been clearer in my original post) that ideally I need to try and identify the most recent date a work item changed it's parent work item ID to "142395" within the query editor table (rather than a measure). This is because I am merging this table with another in query editor.
In your suggested measures, I also wasn't sure how it would be able to idenitfy the most recent date a work item changed it's parent work item ID specifically to "142395", as this ID isn't referenced in the measures.
If you have any additional suggestions, I'd be really grateful.
@Anonymous , try meausre
meausre =
var _1 = calculate(lastnonblankvalue(Table[Date], max(Table[parent work item id])))
return
calculate(min(Table[date]), filter(Table, Table[Date] = _1))
or
meausre =
var _1 = calculate(lastnonblankvalue(Table[Date], max(Table[parent work item id])))
return
calculate(min(Table[date]), filter(Table, Table[Date] = _1), allexcept(Table, Table[Work item Id]))
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
83 | |
71 | |
49 |
User | Count |
---|---|
143 | |
121 | |
111 | |
59 | |
57 |