Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |