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
Hi there,
I am looking to find the time between two points. There is information recorded at the start and again at the end. Example outcome data shown below:
I have tried to create an IF statement but with no success.
Is it possible to create the 'Cycle Time (minutes)' column with this data set?
Any help will be greatly appreciated 🙂
Solved! Go to Solution.
@gregwinter Please try below measure. I'm assuming that you want to find difference in min and max of each serial number
Measure =
VAR _start = CALCULATE(MIN('Table'[Time]),ALLEXCEPT('Table','Table'[Serial No]))
VAR _end = CALCULATE(MAX('Table'[Time]),ALLEXCEPT('Table','Table'[Serial No]))
RETURN IF(MAX('Table'[Sation])=2, DATEDIFF(_start,_end,MINUTE))
@gregwinter Please try below measure. I'm assuming that you want to find difference in min and max of each serial number
Measure =
VAR _start = CALCULATE(MIN('Table'[Time]),ALLEXCEPT('Table','Table'[Serial No]))
VAR _end = CALCULATE(MAX('Table'[Time]),ALLEXCEPT('Table','Table'[Serial No]))
RETURN IF(MAX('Table'[Sation])=2, DATEDIFF(_start,_end,MINUTE))
Brilliant, this works!
Thanks for your effort!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 28 | |
| 21 | |
| 13 | |
| 12 |