PC Review


Reply
Thread Tools Rate Thread

Blank cell with Formulas

 
 
Lily
Guest
Posts: n/a
 
      30th Apr 2008
I have a series of cells filld with formulas, but the value of the cells is
null.

I then in some other cells used if function, which will evaluate the above
cells, and if the value of the above is null then output something like "-",
otherwise some real numbers. However, when the reference cell values are
blank, excel continuously gives me error messages. I wonder if it's the
formulas underlying those cells are screwing everything up. And if yes, is
there a fix to this?

thanks,
 
Reply With Quote
 
 
 
 
Gary''s Student
Guest
Posts: n/a
 
      30th Apr 2008
Here is an example that will work. If B9 contains:

=IF(1=1,"","")

it will always return a null. Therefore another cell that contains:

=IF(B9="","-","") will always return a dash. It will return a dash even if
B9 is completely empty.
--
Gary''s Student - gsnu200782


"Lily" wrote:

> I have a series of cells filld with formulas, but the value of the cells is
> null.
>
> I then in some other cells used if function, which will evaluate the above
> cells, and if the value of the above is null then output something like "-",
> otherwise some real numbers. However, when the reference cell values are
> blank, excel continuously gives me error messages. I wonder if it's the
> formulas underlying those cells are screwing everything up. And if yes, is
> there a fix to this?
>
> thanks,

 
Reply With Quote
 
Lily
Guest
Posts: n/a
 
      30th Apr 2008
Here is my situation,

In cell A1, =if(b1=a+b, 1, ""), and A1 returned "".
In cell c1, =if(a1="", "-", 1)

what I got is #value! instead of "-".

Any ideas?

Lily

"Gary''s Student" wrote:

> Here is an example that will work. If B9 contains:
>
> =IF(1=1,"","")
>
> it will always return a null. Therefore another cell that contains:
>
> =IF(B9="","-","") will always return a dash. It will return a dash even if
> B9 is completely empty.
> --
> Gary''s Student - gsnu200782
>
>
> "Lily" wrote:
>
> > I have a series of cells filld with formulas, but the value of the cells is
> > null.
> >
> > I then in some other cells used if function, which will evaluate the above
> > cells, and if the value of the above is null then output something like "-",
> > otherwise some real numbers. However, when the reference cell values are
> > blank, excel continuously gives me error messages. I wonder if it's the
> > formulas underlying those cells are screwing everything up. And if yes, is
> > there a fix to this?
> >
> > thanks,

 
Reply With Quote
 
Malik
Guest
Posts: n/a
 
      1st May 2008
=IF(ISERROR(IF(B1=A+B, 1, "")),"",1)
--
Malik


"Lily" wrote:

> Here is my situation,
>
> In cell A1, =if(b1=a+b, 1, ""), and A1 returned "".
> In cell c1, =if(a1="", "-", 1)
>
> what I got is #value! instead of "-".
>
> Any ideas?
>
> Lily
>
> "Gary''s Student" wrote:
>
> > Here is an example that will work. If B9 contains:
> >
> > =IF(1=1,"","")
> >
> > it will always return a null. Therefore another cell that contains:
> >
> > =IF(B9="","-","") will always return a dash. It will return a dash even if
> > B9 is completely empty.
> > --
> > Gary''s Student - gsnu200782
> >
> >
> > "Lily" wrote:
> >
> > > I have a series of cells filld with formulas, but the value of the cells is
> > > null.
> > >
> > > I then in some other cells used if function, which will evaluate the above
> > > cells, and if the value of the above is null then output something like "-",
> > > otherwise some real numbers. However, when the reference cell values are
> > > blank, excel continuously gives me error messages. I wonder if it's the
> > > formulas underlying those cells are screwing everything up. And if yes, is
> > > there a fix to this?
> > >
> > > thanks,

 
Reply With Quote
 
Malik
Guest
Posts: n/a
 
      1st May 2008
=IF(ISNA(F19),"-",IF(ISERROR(F19),"-",F19))
--
Malik


"Lily" wrote:

> I have a series of cells filld with formulas, but the value of the cells is
> null.
>
> I then in some other cells used if function, which will evaluate the above
> cells, and if the value of the above is null then output something like "-",
> otherwise some real numbers. However, when the reference cell values are
> blank, excel continuously gives me error messages. I wonder if it's the
> formulas underlying those cells are screwing everything up. And if yes, is
> there a fix to this?
>
> thanks,

 
Reply With Quote
 
Malik
Guest
Posts: n/a
 
      1st May 2008
ignore this please. It;s wrong

Instead:
=IF(ISERROR(B1=a+b),"",IF(B1=a+b,1,""))

--
Malik


"Malik" wrote:

> =IF(ISERROR(B1=A+B), 1, "")),"",1)
> --
> Malik
>
>
> "Lily" wrote:
>
> > Here is my situation,
> >
> > In cell A1, =if(b1=a+b, 1, ""), and A1 returned "".
> > In cell c1, =if(a1="", "-", 1)
> >
> > what I got is #value! instead of "-".
> >
> > Any ideas?
> >
> > Lily
> >
> > "Gary''s Student" wrote:
> >
> > > Here is an example that will work. If B9 contains:
> > >
> > > =IF(1=1,"","")
> > >
> > > it will always return a null. Therefore another cell that contains:
> > >
> > > =IF(B9="","-","") will always return a dash. It will return a dash even if
> > > B9 is completely empty.
> > > --
> > > Gary''s Student - gsnu200782
> > >
> > >
> > > "Lily" wrote:
> > >
> > > > I have a series of cells filld with formulas, but the value of the cells is
> > > > null.
> > > >
> > > > I then in some other cells used if function, which will evaluate the above
> > > > cells, and if the value of the above is null then output something like "-",
> > > > otherwise some real numbers. However, when the reference cell values are
> > > > blank, excel continuously gives me error messages. I wonder if it's the
> > > > formulas underlying those cells are screwing everything up. And if yes, is
> > > > there a fix to this?
> > > >
> > > > thanks,

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Last cell in range of formulas not equal to blank Shawn Microsoft Excel Programming 3 26th Mar 2008 12:38 PM
Referencing cells with formulas results in blank cell. rdp Microsoft Excel Worksheet Functions 1 4th Dec 2007 06:53 PM
Start Cell B1 then find first blank cell, insert subtotal, next non blank, then next blank, sutotal cells in between......... amorrison2006@googlemail.com Microsoft Excel Programming 2 7th Jun 2007 09:27 PM
Formulas returning a blank if no data entered in one cell =?Utf-8?B?TWlmdHkgSmFja3Nvbg==?= Microsoft Excel New Users 3 31st Mar 2005 04:37 PM
How to read a blank cell as zero for formulas? =?Utf-8?B?bXJzc201?= Microsoft Excel Misc 2 23rd Dec 2004 01:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:14 AM.