Multiple ISBLANK Query

29sandesh

New Member
Joined
Sep 5, 2013
Messages
49
ORDER STATUS CAD PENDINGDIE PENDINGSTONE PENDING
CAD PENDING

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
These are my 4 columns, if (Column 2,Row 2) -> CAD pending cell is blank , then Order status(Column1,Row2) should show CAD PENDING, if (Column 3,Row 2), DYE PENDING is blank, Order Status should show -> DIE PENDING , if Column 4,Row 2) is blank it should , Order status should -> STONE PENDING.

I tried ISBLANK below formula but couldnt go beyond two columns.

=if(AND(isblank(B2),isblank(C2)), "CAD PENDING", "DIE PENDING")
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
If I understand your requirement correctly then this should do it (I have stuck to your approach although there are other ways of obtaining the same result):
=IF(ISBLANK(B2),"CAD PENDING",IF(ISBLANK(C2),"DIE PENDING",IF(ISBLANK(D2),"STONE PENDING","")))
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

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