Return empty after looking for two values

ckroon

Board Regular
Joined
Nov 9, 2005
Messages
60
I have this formula:
=IF(CN8="","",1)
Which returns a 1 if CN8 is empty

I want to add =0 as well so it returns as empty if CN8 has a 0, or is empty

How do I add that OR statement to that formula?
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Cool

Now when I copy down that formula in the cells below, I need the return value of 1 to increment along with the cell names.

Either that or I have to enter 2, 3, 4, 5, all the way down to kingdom come.. :)
 
Upvote 0
You may need to use an offset with this

=IF(OR(ISBLANK(CN8),CN8=0),"",ROW())
 
Upvote 0

Forum statistics

Threads
1,221,239
Messages
6,158,716
Members
451,510
Latest member
kegnazmach

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