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
Looking to find the time difference betwee certain items within an order. My data set has a different line for each status of each item of each order. What i am looking to do is create a measeure that calculates the time between certain statuses within each of these unique order / item types. In this case, the time betwee the "confirmed" status and the "allocated" status.
I'm sure its a DATEDIFF function but i am having trouble with the filter context.
Solved! Go to Solution.
Hi @awitt
1.create two tables based on your table
table 1
status_1 = VALUES(Sheet2[status])
status_2 = VALUES(Sheet2[status])Change [status] in this table to [status_2]
selected1 = SELECTEDVALUE(status_1[status_1]) selected2 = SELECTEDVALUE(status_2[status_2]) date1 = CALCULATE(MAX(Sheet2[date]),FILTER(ALLEXCEPT(Sheet2,Sheet2[order number],Sheet2[item]),Sheet2[status]=[selected1])) date2 = CALCULATE(MAX(Sheet2[date]),FILTER(ALLEXCEPT(Sheet2,Sheet2[order number],Sheet2[item]),Sheet2[status]=[selected2])) diff = DATEDIFF([date1],[date2],HOUR) final = IF([date2]=BLANK(),"N/A",[diff]/24)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @awitt
1.create two tables based on your table
table 1
status_1 = VALUES(Sheet2[status])
status_2 = VALUES(Sheet2[status])Change [status] in this table to [status_2]
selected1 = SELECTEDVALUE(status_1[status_1]) selected2 = SELECTEDVALUE(status_2[status_2]) date1 = CALCULATE(MAX(Sheet2[date]),FILTER(ALLEXCEPT(Sheet2,Sheet2[order number],Sheet2[item]),Sheet2[status]=[selected1])) date2 = CALCULATE(MAX(Sheet2[date]),FILTER(ALLEXCEPT(Sheet2,Sheet2[order number],Sheet2[item]),Sheet2[status]=[selected2])) diff = DATEDIFF([date1],[date2],HOUR) final = IF([date2]=BLANK(),"N/A",[diff]/24)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |