Students ran a race consisting of two laps around an outdoor cross-country obstacle course. The following dataset shows their start time, the time their first lap was finished, and the time when their second lap was finished. how many students lap faster than the first. Computed calculation in seconds not minutes?
I hope my workflow may help.
Formulas:
Sec_Start_to_1stLap = DateTimeDiff([Time After First Lap],[Start Time],"seconds")
Sec_1stLap_to_2ndLap = DateTimeDiff([Time After Second Lap],[Time After First Lap],"seconds")
Outcome =
IF [Sec_Start_to_1stLap] > [Sec_1stLap_to_2ndLap]
THEN "2nd lap is faster"
ELSE "1st lap is faster (or same)"
ENDIF
Workflow:
Output:
So I would say the answer is "A 13"😀
User | Count |
---|---|
106 | |
82 | |
70 | |
54 | |
40 |