I'm starting out with this pretty straight forward formula on a worksheet called R1 in cell I3 to I34 (I3 shown):
=IF(B3="","",IF(G3="DNF",G3,IF(G3="DSQ",G3,Setup!B12)))
The worksheet records a runners points for a race, and Setup!B12 is just a number (points for a race).
I need to add 3 additional conditions to this. I'll do my best to describe.
1. If the last else condition is met, for the quickest time in F3:F34 only, I also need the value from Setup!B9 added.
2. If the last else condition is met, for the quickest time in H3:H34 only, I also need the value from Setup!B10 added.
3. If the last else condition is met, and there is a 0 in column K, I also need the value from Setup!B11 added.
To be clear, only 1 person will have #1 applied to them, only 1 person will have #2 applied to them, but any number of people can have #3 applied to them. One person could also have all three at once.
Times for #1 & #2 are entered in the format mm:ss.000.
Here is an example worksheet: https://dl.dropboxusercontent.com/u/57757349/Spreadsheet Development/Example.xlsx
Any help would be greatly appreciated.
=IF(B3="","",IF(G3="DNF",G3,IF(G3="DSQ",G3,Setup!B12)))
The worksheet records a runners points for a race, and Setup!B12 is just a number (points for a race).
I need to add 3 additional conditions to this. I'll do my best to describe.
1. If the last else condition is met, for the quickest time in F3:F34 only, I also need the value from Setup!B9 added.
2. If the last else condition is met, for the quickest time in H3:H34 only, I also need the value from Setup!B10 added.
3. If the last else condition is met, and there is a 0 in column K, I also need the value from Setup!B11 added.
To be clear, only 1 person will have #1 applied to them, only 1 person will have #2 applied to them, but any number of people can have #3 applied to them. One person could also have all three at once.
Times for #1 & #2 are entered in the format mm:ss.000.
Here is an example worksheet: https://dl.dropboxusercontent.com/u/57757349/Spreadsheet Development/Example.xlsx
Any help would be greatly appreciated.