ISBLANK Global setting?

  • Thread starter Thread starter Alan F.
  • Start date Start date
A

Alan F.

Does anybody know if there is a global setting etc. or code that I can
set so that I do not get the #VALUE! errors whan one of my formulae
references a blank cell? A sort of "OnError" command.

I know that I can modify all my formula with
IF(ISNUMBER(A1),A1*(1-b2/100),"") but then all my simple formulae
become more difficult to read, longer to create and more prone for
errors.

=A1*(1-b2/100) is a lot easiar to read and trouble shoot
then =IF(ISNUMBER(A1),A1*(1-b2/100),"")

What I want is for the system to just return a blank if there is a
blank in the data cells.

In hope :-)

Alan F.
 
Hi
AFAIK there's no such setting. you you have to include the
error checking on your own
Frank
 
The #VALUE! error is probably being caused by a reference being made t
a range that is text or even a zero length string. It may be wort
looking to correct the problem at this stage eg by use of the
function that will convert any text to 0's.

Dunca
 
Spend an hour or so with such formulae and they will no longer be very
difficult to read, or take appreciably longer to create.

As far as more prone to errors, I disagree entirely. THe discipline
involved in designing a worksheet that traps errors appropriately will
help you to avoid design errors that silently give you bad results.

It won't prevent you from screwing up - if you mindlessly start each
formula with something like IF(ISNUMBER(A1),...), it won't help. If you
only use that construction for situations where A1 is *expected* to
sometimes be blank, however, then you'll know there's a problem when you
deliberately *don't* use that error trap (i.e., because A1 should never
be blank), and you get the #VALUE! error. If instead you'd been able to
apply a global band-aid, your model might fail without warning you.
 
JE McGimpsey said:
Spend an hour or so with such formulae and they will no longer be very
difficult to read, or take appreciably longer to create.

As far as more prone to errors, I disagree entirely. THe discipline
involved in designing a worksheet that traps errors appropriately will
help you to avoid design errors that silently give you bad results.

It won't prevent you from screwing up - if you mindlessly start each
formula with something like IF(ISNUMBER(A1),...), it won't help. If you
only use that construction for situations where A1 is *expected* to
sometimes be blank, however, then you'll know there's a problem when you
deliberately *don't* use that error trap (i.e., because A1 should never
be blank), and you get the #VALUE! error. If instead you'd been able to
apply a global band-aid, your model might fail without warning you.

So that's a "no" then ;-)

Regards Alan F.
 
Does anybody know if there is a global setting etc. or code that I can
set so that I do not get the #VALUE! errors whan one of my formulae
references a blank cell? A sort of "OnError" command.

I know that I can modify all my formula with
IF(ISNUMBER(A1),A1*(1-b2/100),"") but then all my simple formulae
become more difficult to read, longer to create and more prone for
errors.

=A1*(1-b2/100) is a lot easiar to read and trouble shoot
then =IF(ISNUMBER(A1),A1*(1-b2/100),"")

What I want is for the system to just return a blank if there is a
blank in the data cells.

In hope :-)

Alan F.


Many thanks to all for your replies.

Kind regards Alan. F
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

IsBlank 5
IF / ISBLANK 1
Excel Need Countifs Formula Help 0
How to determine the value? 2
isblank 2
Understanding complex IF Formula within IF formula 3
Macros & Copying to another sheet 2
Isblank error 3

Back
Top