In Excel
The following formula works fine except for one thing:
=IF(A12="","",SQRT(IF(OR(A12-200<Tw,A12>Kmv),0.15,0.1)/(H12*G12^2)))
If the cell containing Kmv is blank, null or less than Tw... Then the formula uses (.15) when it should use (0.1)
If the cell containing Kmv has a value greater than A12 everything is fine.
I would like to combine this formula with something to test that (A12>Kmv and Not(IsBlank(Kmv))
IsNull
To summarize:
If (A12-200)< Tw [True] use .15
OR
(A12>Kmv and Not(IsBlank(Kmv))
[True] and [False] use .10
[True] and [True] use .15
Suggestions Please! I've tried many permutations but so far all have given up errors. I was able to write this in Access sucessfully but not in Excel.
The following formula works fine except for one thing:
=IF(A12="","",SQRT(IF(OR(A12-200<Tw,A12>Kmv),0.15,0.1)/(H12*G12^2)))
If the cell containing Kmv is blank, null or less than Tw... Then the formula uses (.15) when it should use (0.1)
If the cell containing Kmv has a value greater than A12 everything is fine.
I would like to combine this formula with something to test that (A12>Kmv and Not(IsBlank(Kmv))
IsNull
To summarize:
If (A12-200)< Tw [True] use .15
OR
(A12>Kmv and Not(IsBlank(Kmv))
[True] and [False] use .10
[True] and [True] use .15
Suggestions Please! I've tried many permutations but so far all have given up errors. I was able to write this in Access sucessfully but not in Excel.