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

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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,215,048
Messages
6,122,862
Members
449,097
Latest member
dbomb1414

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