IsBlank Multiple Outcomes/ Cells

NjayW

New Member
Joined
Jan 30, 2016
Messages
5
I use this place a lot and have always found answers here but am stumped with this one!!
Everything is in cell C1
If cell A1 is blank then leave Cell C1 blank
If cell B1 is blank then copy Cell D1 to C1
Been playing around with is blank, or, and etc... But can't seem to get it to work.
All help is appreciated!!!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Amazing! So simple. The more I thought about it the more complicated I was making it. Thanks mvancleave!!!
 
Upvote 0
If you want less typing, you can also write that as

=IF(A1="","",IF(B1="",D1,""))
 
Upvote 0
Actually, Peter's solution is more robust. ISBLANK() can return FALSE if the referenced cell contains a formula, even if the formula returns what looks like a "blank" cell. Peter's solution avoids that.
 
Upvote 0

Forum statistics

Threads
1,216,458
Messages
6,130,754
Members
449,588
Latest member
accountant606

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top