I'm looking for some help with an Excel formula for determining the lowest value based upon data in first two columns. I have seen questions regarding basing it off one column, but I'm not sure how to convert that into a two column data range formula. I have Day
, Interval
, and Time
columns (A, B, C) and am looking to find my fastest interval for each day/interval set. For example:
Day Interval Time
1/1 100 :55
1/1 100 :52
1/1 100 :54
1/1 200 2:40
1/1 200 2:38
1/5 100 :50
1/5 100 :56
1/5 100 :58
1/5 200 2:39
1/5 200 2:36
1/5 200 2:40
I'm looking for a formula that would be able to determine my fastest times for EACH of the intervals (100 and 200) and EACH of the days in a chart format as shown below:
Interval
Day 100 200
1/1 :52 2:38
1/5 :50 2:36
I need to avoid using VBA since the version of Excel I'm using (Mac for Excel 2008) does not have that function. There will be a growing number of data points however, the number or formatting of columns will not change. Ideally, I'll be reviewing just the chart immediately above to determine if I'm getting faster over the offseason period.