Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have "Date Opened" and "Action Date" I need to calculate number of minutes between the open date and the first action date
I was thinking something like
= MIN(ActionDate) - DateOpened
because eacch item will have multiple "actions" but I need the time between the item being opened to the first action being taken
I feel like I"m on the right track but not quite there
Hi @bhmiller89,
Did you mean this?
Measure with DATEDIFF() function:
Wait Time =
DATEDIFF (
MAX ( 'Action'[DateOpened] ),
CALCULATE (
MIN ( 'Action'[ActionDate] ),
ALLEXCEPT ( 'Action', 'Action'[Actions] )
),
MINUTE
)
If it doesn't satisfy your requirement, please share us some sample data which we can copy and paste directly and its corresponding expected result.
Thanks,
Xi Jin.
That didn't seem to work.

Here's an Incident that has two actions. I need the number of minutes between the OpenDate and the very first Action StartDate. So in this case it should be somewhere around 38 minutes but the formula is spitting out that weird number. The OpenDate for the Incident and the StartDate of the Action are in two different tables if that matters
Hi @bhmiller89,
Yes. That matters.
Please share us your table structure and some sample data which we can copy and paste directly. Or if you can share us your pbix file with One Drive or Google Drive, it'll help us a lot to know your actual situation.
Thanks,
Xi Jin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |