Return truly blank cell, not ""

biocat

New Member
Joined
Jun 21, 2016
Messages
10
I've searched around for this but can't find a suitable answer. Is there a way to return (in an if statement) a truly blank value? I have a long list that is generated by an if statement and I want to be able to CTRL-SHIFT-DOWN-ARROW select just the cells with values. When the if statement returns "" for a blank cell they still get selected with CTRL-SHIFT-DOWN-ARROW. Thanks!
 
You can't without VBA

There are many other options, however, such as the filter.
 
Last edited:
Upvote 0
I've searched around for this but can't find a suitable answer. Is there a way to return (in an if statement) a truly blank value? I have a long list that is generated by an if statement and I want to be able to CTRL-SHIFT-DOWN-ARROW select just the cells with values. When the if statement returns "" for a blank cell they still get selected with CTRL-SHIFT-DOWN-ARROW. Thanks!
What is displayed in the cells having values... numbers or text?
 
Upvote 0
You can't without VBA

There are many other options, however, such as the filter.

Thanks I was to make a workaround using the filter as you suggested; I need to refresh the filter whenever a change is made but I can live with that.

You mentioned there are many other options - I'd be curious as to what these are.
 
Upvote 0
You can return a 1/0 error instead of "", then with F5(Goto)-Special select everything else, or a small(if()) formula which acts as a filter, or copy/paste the whole set, then use a len() formula which returns zero for true blanks and zero length strings.
 
Upvote 0

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