We are still missing values in a bunch of other cells, as you have formulas referencing C6:C9 on your Start Here sheet, and then we are missing D11, F22, and F32.
Or, simply let me know the results of the formulas in the cells I originally listed (instead of providing the underlying formulas if you are not going to give me the values in all the cells that those underlying formulas reference.
andyou have formulas referencing C6:C9 on your Start Here sheet
D11, F22, and F32
OK, I think I have all the data now.
See if this gets you what you are after:
Code:=IF(ISBLANK(D12),IF(F17<365,F27,F37),F12)
Is D12 blank?
If not, it will never look at F17.
The formula only looks at F17 if D12 is blank.
If that is not what you want, then you have an issue with the formula logic.
So then lets take a step back and forget about the formula, and just tells us (in plain English) what SHOULD happen in each scenario, i.e.
- D12 blank and F17 < 365
- D12 blank and F17 >= 365
- D12 NOT blank and F17 < 365
- D12 NOT blank and F17 >= 365
[COLOR=#333333]IF(isblank(D12),(F17<365,F27,IF(F17>364,F37,[/COLOR][COLOR=#ff0000]f12[/COLOR][COLOR=#333333])))[/COLOR]
=IF(ISBLANK(D12),IF(F17<365,F27,F37),[COLOR=#ff0000]D12[/COLOR])