ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   IF formula question (https://www.excelbanter.com/excel-worksheet-functions/63808-if-formula-question.html)

Rubix

IF formula question
 
My question is, I want to add "if" E2 is blank leave R2 blank in
addition to formula below.

This Formula is in R2 cell.

=IF(P2<1,"A",IF(P21,"B",IF(P2<2,"G")))

Thanks,
Rube

Harlan Grove

IF formula question
 
"Rubix" wrote...
My question is, I want to add "if" E2 is blank leave R2 blank in
addition to formula below.

This Formula is in R2 cell.

=IF(P2<1,"A",IF(P21,"B",IF(P2<2,"G")))


E2? Do you mean P2?

The formula above would only return "G" when P2=1. If that's what you want,
it'd be LOTS clearer to write it as

=IF(P2<1,"A",IF(P21,"B","G"))

Since P2<1, P21 and P2=1 are exhaustive, the only place you could add
another condition would be as the first test.

=IF(ISBLANK(E2),"",IF(P2<1,"A",IF(P21,"B","G")))



[email protected]

IF formula question
 
"Rubix" wrote:
My question is, I want to add "if" E2 is blank
leave R2 blank in addition to formula below.
This Formula is in R2 cell.
=IF(P2<1,"A",IF(P21,"B",IF(P2<2,"G")))


It is not clear which conditions you want to give
precedence to; that is, which conditions override
the others. The following are two possibilities:

1. "E2 is blank" overrides all other conditions

=IF(E2="","",IF(P2<1,"A",IF(P21,"B",IF(P2<2,"G")) ))

2. All other conditions override "E2 is blank"

=IF(P2<1,"A",IF(P21,"B",IF(P2<2,"G",IF(E2="","")) ))

Note: I have omitted the false-value part of the last IF()
function, just as you did. In some contexts in Excel,
that is the right thing to do. But normally, I think it is
best to have a false-value part

Rubix

IF formula question
 
Thanks!


All times are GMT +1. The time now is 03:50 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com