Rizon
07-01-2004, 03:56 PM
Here is my formula:
=IF(F6=0,0,IF(F6>0.001,F6,IF(F6="N/A",IF(B17>7000,7000,B17))))
Whereas:
F6= N/A
B17= 1160.25
Basically, I want Excel to:
First look and see if the cell = 0. If it does, enter 0. If it doesn't:
Then look and see if the cell is > 0.001. If it does, enter the contents of the cell, if it doesnt:
Then look to see if the cell = N/A. If it does, then I want it to compute that if the cell in B17 is greater than 7000, to enter 7000. If it doesn't = 7000, then I want it to enter the contents of B17.
Somewhere I'm missing something, because the answer should be 1160.25, but Excel is giving me the answer of "N/A". I wonder if it's because I have 4 "trues" for my IFs, and only three "falses".
Any help would be nice.
=IF(F6=0,0,IF(F6>0.001,F6,IF(F6="N/A",IF(B17>7000,7000,B17))))
Whereas:
F6= N/A
B17= 1160.25
Basically, I want Excel to:
First look and see if the cell = 0. If it does, enter 0. If it doesn't:
Then look and see if the cell is > 0.001. If it does, enter the contents of the cell, if it doesnt:
Then look to see if the cell = N/A. If it does, then I want it to compute that if the cell in B17 is greater than 7000, to enter 7000. If it doesn't = 7000, then I want it to enter the contents of B17.
Somewhere I'm missing something, because the answer should be 1160.25, but Excel is giving me the answer of "N/A". I wonder if it's because I have 4 "trues" for my IFs, and only three "falses".
Any help would be nice.