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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I monitor apr. 200 processes. Each process typicaly contains 5 activities. Today I monitor start and end of each process, but I need a solution to measure the time from start act. 2 to end act. 4 in each prosess.
Any suggestions?
@OHM,
Please share us some sample data. Generally, we can use the DAX to get the difference between two datetime field.
Measure = DATEDIFF(MAX(Table2[Start]),MAX(Table2[End]),SECOND)
Regards,
Charlie Liao