#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Brad
 
Posts: n/a
Default Return Blank

Thanks for taking the time to read my question.

I have a column of formulas like this:

=if(B1="","",B1)

This works fine, but I want to use this column as the row source for a value
list from Data - Validation. There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank, so my value lists are long and
empty.

How can I make my formula return nothing instead of a zero length string?

Thanks,

Brad
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Return Blank

Hi!

There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank,
so my value lists are long and empty.


Actually, it says Ignore blank but that's not what it's for. It doesn't mean
to exclude from the list any blank or empty cells.

How can I make my formula return nothing instead of a zero length string?


You can't.

The only way to get rid of the blanks in your drop down list is to create a
source that doesn't contain any blanks.

Biff

"Brad" wrote in message
...
Thanks for taking the time to read my question.

I have a column of formulas like this:

=if(B1="","",B1)

This works fine, but I want to use this column as the row source for a
value
list from Data - Validation. There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank, so my value lists are long
and
empty.

How can I make my formula return nothing instead of a zero length string?

Thanks,

Brad



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Brad
 
Posts: n/a
Default Return Blank

Sorry for the miss quote.

What is the Ignore Blank for then?

Brad

"Biff" wrote:

Hi!

There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank,
so my value lists are long and empty.


Actually, it says Ignore blank but that's not what it's for. It doesn't mean
to exclude from the list any blank or empty cells.

How can I make my formula return nothing instead of a zero length string?


You can't.

The only way to get rid of the blanks in your drop down list is to create a
source that doesn't contain any blanks.

Biff

"Brad" wrote in message
...
Thanks for taking the time to read my question.

I have a column of formulas like this:

=if(B1="","",B1)

This works fine, but I want to use this column as the row source for a
value
list from Data - Validation. There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank, so my value lists are long
and
empty.

How can I make my formula return nothing instead of a zero length string?

Thanks,

Brad




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Return Blank

What is the Ignore Blank for then?

An example:

You want users to enter a value =10 in cell B1 if cell A1 = 0.

Select cell B1
Goto DataValidation
Select Custom
Formula: =AND(A1=0,B1=10)
OK

Leave cell A1 empty. An empty cell will evaluate to zero.

Enter 1 in cell B1. It allows you to do so but 1 does not meet the criteria
specified. A1 being empty evaluates to 0 but B1 is not =10.

Now goto DataValidation and uncheck Ignore blankOK.

Try entering a 1 in cell A1.

Biff

"Brad" wrote in message
...
Sorry for the miss quote.

What is the Ignore Blank for then?

Brad

"Biff" wrote:

Hi!

There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank,
so my value lists are long and empty.


Actually, it says Ignore blank but that's not what it's for. It doesn't
mean
to exclude from the list any blank or empty cells.

How can I make my formula return nothing instead of a zero length
string?


You can't.

The only way to get rid of the blanks in your drop down list is to create
a
source that doesn't contain any blanks.

Biff

"Brad" wrote in message
...
Thanks for taking the time to read my question.

I have a column of formulas like this:

=if(B1="","",B1)

This works fine, but I want to use this column as the row source for a
value
list from Data - Validation. There is a check box there that says
Exclude
Blanks. "" is a zero length string, not blank, so my value lists are
long
and
empty.

How can I make my formula return nothing instead of a zero length
string?

Thanks,

Brad






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Brad
 
Posts: n/a
Default Return Blank

Very very cool!

Thanks Biff.

Brad

"Biff" wrote:

What is the Ignore Blank for then?


An example:

You want users to enter a value =10 in cell B1 if cell A1 = 0.

Select cell B1
Goto DataValidation
Select Custom
Formula: =AND(A1=0,B1=10)
OK

Leave cell A1 empty. An empty cell will evaluate to zero.

Enter 1 in cell B1. It allows you to do so but 1 does not meet the criteria
specified. A1 being empty evaluates to 0 but B1 is not =10.

Now goto DataValidation and uncheck Ignore blankOK.

Try entering a 1 in cell A1.

Biff

"Brad" wrote in message
...
Sorry for the miss quote.

What is the Ignore Blank for then?

Brad

"Biff" wrote:

Hi!

There is a check box there that says Exclude
Blanks. "" is a zero length string, not blank,
so my value lists are long and empty.

Actually, it says Ignore blank but that's not what it's for. It doesn't
mean
to exclude from the list any blank or empty cells.

How can I make my formula return nothing instead of a zero length
string?

You can't.

The only way to get rid of the blanks in your drop down list is to create
a
source that doesn't contain any blanks.

Biff

"Brad" wrote in message
...
Thanks for taking the time to read my question.

I have a column of formulas like this:

=if(B1="","",B1)

This works fine, but I want to use this column as the row source for a
value
list from Data - Validation. There is a check box there that says
Exclude
Blanks. "" is a zero length string, not blank, so my value lists are
long
and
empty.

How can I make my formula return nothing instead of a zero length
string?

Thanks,

Brad






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
want to return "n/a" or "0" edrachel New Users to Excel 2 January 27th 06 10:14 PM
enter numbers in blank cells bill gras Excel Worksheet Functions 2 September 21st 05 01:17 PM
How do I return a blank for VLOOKUP instead of #N/A? ExcelBee Excel Worksheet Functions 15 September 3rd 05 07:04 AM
Counting blank and filled cells within a range. greg7468 Excel Discussion (Misc queries) 3 June 28th 05 10:41 PM
referencing cells that return blank results Suz Excel Worksheet Functions 4 February 21st 05 10:59 PM


All times are GMT +1. The time now is 11:16 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"