"If any one of those cells is blank then do this" How to formulate?

Kukorof

New Member
Joined
Oct 16, 2018
Messages
12
Hi,

Suppose I have some data in A2 C2 & E2. In F2 I want to put a formula where it shows that if any one of those three separate cells (which is not in a range) contains a blank then show X in F2. I could do it with multiple nested IF functions (=If(A2="", "X", If(C2="", "X", If(E2="", "X", "Other formula")))). But in that formula the "X" is repeated to many times for the same purpose for larger number of columns. SO I wonder if there is any other method producing the same result but that is way more efficient than that?


regards
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
This would allow you to expand to any number of columns without adding more terms to it, just altering the overall range.

=IF(SUMPRODUCT(--(A2:E2=""),--(MOD(COLUMN(A2:E2)-COLUMN(A2),2)=0)),"X","Other formula")

Expansion example:
=IF(SUMPRODUCT(--(A2:Q2=""),--(MOD(COLUMN(A2:Q2)-COLUMN(A2),2)=0)),"X","Other formula")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,240
Messages
6,170,951
Members
452,368
Latest member
jayp2104

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