Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 34
Default Zero in cell where it is linked to a blank cell

When I enter a formula to link a cell to another cell, the cell that is
copied from the other cell has a ZERO when the linked cell is blank.

What is the format I should use for this to not happen when there are
letters as well as numbers?

Thank you,
Vanessa
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Zero in cell where it is linked to a blank cell

=IF(A1="","",A1)
--
Gary''s Student - gsnu200838
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Zero in cell where it is linked to a blank cell



"Gary''s Student" wrote:

=IF(A1="","",A1)


While that formula will display a blank cell, the cell is not truly blank,
as the ISBLANK function returns FALSE, and a graph plots a zero value. I need
the cell to be truly blank (the ISBLANK function should return TRUE).
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Zero in cell where it is linked to a blank cell

If you want a blank cell, don't put anything in it.
A formula cannot return a truly blank result.
I you want a chart not to plot as zero, put NA() in the formula instead of
"".
--
David Biddulph

jgenzano wrote:
"Gary''s Student" wrote:

=IF(A1="","",A1)


While that formula will display a blank cell, the cell is not truly
blank, as the ISBLANK function returns FALSE, and a graph plots a
zero value. I need the cell to be truly blank (the ISBLANK function
should return TRUE).



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 34
Default Zero in cell where it is linked to a blank cell

I have a cell on one sheet in a workbook as =(PL!A27) which is the sheet and
the cell being referenced. I want cell AF1, sheet BOL to automatically fill
in when something is typed into the Cell A27 on the sheet named PL. However
when there is nothing in cell A27, sheet PL, cell AF1, sheet BOL has a Zero
until something is entered into that cell... so what format can I use for all
of the cells being linked to another.


A question off this topic... does anyone know how to pull up all of my old
questions on here? I looked in my profile and didn't see anything. I could be
overlooking it.


"texansgal" wrote:

When I enter a formula to link a cell to another cell, the cell that is
copied from the other cell has a ZERO when the linked cell is blank.

What is the format I should use for this to not happen when there are
letters as well as numbers?

Thank you,
Vanessa



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default Zero in cell where it is linked to a blank cell

Hi Texansgal
Not sure if this is what you want, this will keep the cell empty if there's
nothing in AF1
=if(BOL!AF1="","",PL!A27
Your second question, go the link below and type your e.mail address.
http://groups.google.com/groups/profile?enc_user=

HTH
John
Cheers from Montreal,Canada
"texansgal" wrote in message
...
I have a cell on one sheet in a workbook as =(PL!A27) which is the sheet and
the cell being referenced. I want cell AF1, sheet BOL to automatically fill
in when something is typed into the Cell A27 on the sheet named PL. However
when there is nothing in cell A27, sheet PL, cell AF1, sheet BOL has a Zero
until something is entered into that cell... so what format can I use for all
of the cells being linked to another.


A question off this topic... does anyone know how to pull up all of my old
questions on here? I looked in my profile and didn't see anything. I could be
overlooking it.


"texansgal" wrote:

When I enter a formula to link a cell to another cell, the cell that is
copied from the other cell has a ZERO when the linked cell is blank.

What is the format I should use for this to not happen when there are
letters as well as numbers?

Thank you,
Vanessa


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default Zero in cell where it is linked to a blank cell

Oops
Correction..
=IF(PL!A27="","",PL!A27
"John" wrote in message
...
Hi Texansgal
Not sure if this is what you want, this will keep the cell empty if there's
nothing in AF1
=if(BOL!AF1="","",PL!A27
Your second question, go the link below and type your e.mail address.
http://groups.google.com/groups/profile?enc_user=

HTH
John
Cheers from Montreal,Canada
"texansgal" wrote in message
...
I have a cell on one sheet in a workbook as =(PL!A27) which is the sheet and
the cell being referenced. I want cell AF1, sheet BOL to automatically fill
in when something is typed into the Cell A27 on the sheet named PL. However
when there is nothing in cell A27, sheet PL, cell AF1, sheet BOL has a Zero
until something is entered into that cell... so what format can I use for all
of the cells being linked to another.


A question off this topic... does anyone know how to pull up all of my old
questions on here? I looked in my profile and didn't see anything. I could be
overlooking it.


"texansgal" wrote:

When I enter a formula to link a cell to another cell, the cell that is
copied from the other cell has a ZERO when the linked cell is blank.

What is the format I should use for this to not happen when there are
letters as well as numbers?

Thank you,
Vanessa



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 34
Default Zero in cell where it is linked to a blank cell

Right now, I have a formula in the cell (we'll say B2 on Sheet 2) to have the
same information as cell B2 on Sheet 1. There is no information entered in
the cell B2 on Sheet 1 therefore it has a 0 showing up in cell B2 on Sheet 2.

Does this make anymore sense?

Would I have my formula to link it and then add the =IF(PL!A27="","",PL!A27
that you gave me for this?





"John" wrote:

Oops
Correction..
=IF(PL!A27="","",PL!A27
"John" wrote in message
...
Hi Texansgal
Not sure if this is what you want, this will keep the cell empty if there's
nothing in AF1
=if(BOL!AF1="","",PL!A27
Your second question, go the link below and type your e.mail address.
http://groups.google.com/groups/profile?enc_user=

HTH
John
Cheers from Montreal,Canada
"texansgal" wrote in message
...
I have a cell on one sheet in a workbook as =(PL!A27) which is the sheet and
the cell being referenced. I want cell AF1, sheet BOL to automatically fill
in when something is typed into the Cell A27 on the sheet named PL. However
when there is nothing in cell A27, sheet PL, cell AF1, sheet BOL has a Zero
until something is entered into that cell... so what format can I use for all
of the cells being linked to another.


A question off this topic... does anyone know how to pull up all of my old
questions on here? I looked in my profile and didn't see anything. I could be
overlooking it.


"texansgal" wrote:

When I enter a formula to link a cell to another cell, the cell that is
copied from the other cell has a ZERO when the linked cell is blank.

What is the format I should use for this to not happen when there are
letters as well as numbers?

Thank you,
Vanessa




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Zero in cell where it is linked to a blank cell

=IF(Sheet1!B2="","",Sheet1!B2) is all you need in B2 of Sheet2

Does the linking and handles the zero.

=IF(PL!A27="","",PL!A27) is exactly the same construct.

It would be used in place of =PL!A27 which you currently have.


Gord Dibben MS Excel MVP


On Mon, 1 Jun 2009 12:46:02 -0700, texansgal
wrote:

Right now, I have a formula in the cell (we'll say B2 on Sheet 2) to have the
same information as cell B2 on Sheet 1. There is no information entered in
the cell B2 on Sheet 1 therefore it has a 0 showing up in cell B2 on Sheet 2.

Does this make anymore sense?

Would I have my formula to link it and then add the =IF(PL!A27="","",PL!A27
that you gave me for this?





"John" wrote:

Oops
Correction..
=IF(PL!A27="","",PL!A27
"John" wrote in message
...
Hi Texansgal
Not sure if this is what you want, this will keep the cell empty if there's
nothing in AF1
=if(BOL!AF1="","",PL!A27
Your second question, go the link below and type your e.mail address.
http://groups.google.com/groups/profile?enc_user=

HTH
John
Cheers from Montreal,Canada
"texansgal" wrote in message
...
I have a cell on one sheet in a workbook as =(PL!A27) which is the sheet and
the cell being referenced. I want cell AF1, sheet BOL to automatically fill
in when something is typed into the Cell A27 on the sheet named PL. However
when there is nothing in cell A27, sheet PL, cell AF1, sheet BOL has a Zero
until something is entered into that cell... so what format can I use for all
of the cells being linked to another.


A question off this topic... does anyone know how to pull up all of my old
questions on here? I looked in my profile and didn't see anything. I could be
overlooking it.


"texansgal" wrote:

When I enter a formula to link a cell to another cell, the cell that is
copied from the other cell has a ZERO when the linked cell is blank.

What is the format I should use for this to not happen when there are
letters as well as numbers?

Thank you,
Vanessa




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
How do I remove zeros from a linked blank cell? Scott Excel Discussion (Misc queries) 3 August 29th 08 08:44 PM
How do I have a linked cell auto-size to fit the linked data? CristinPDX Excel Discussion (Misc queries) 0 June 24th 08 08:42 PM
Need linked cell to be blank not 0 amquintero Excel Discussion (Misc queries) 2 June 2nd 08 08:19 PM
Return a blank cell instead of a zero value for two linked sheets. Matt Excel Discussion (Misc queries) 1 February 4th 07 02:37 AM
COPY A CONCATENATE CELL TO BLANK CELL PUTTING IN THE NEXT BLANK C. QUEST41067 Excel Discussion (Misc queries) 1 January 15th 05 09:29 PM


All times are GMT +1. The time now is 06:56 AM.

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"