Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Hiding cell information

I am working in Excel 2003 with a spreadsheet that is being set up for a full
year and data will be added on a weekly basis. I would like to put the
formulas in the spreadsheet for the full year and not have cells populate
with error messages due to the fact that the corresponding data has not yet
been entered. In Excel there is a way to put a formula in a cell yet not have
the cell populate with anything till the corresponding data is entered.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Hiding cell information

Yes. On how many cells of data does your formula depend?
If just 1 cell, then =IF(A2="","",your_formula)
If say 3 cells, then =IF(COUNT(A2:C2)=3,your_formula,"")
--
David Biddulph

"Rescueme" wrote in message
...
I am working in Excel 2003 with a spreadsheet that is being set up for a
full
year and data will be added on a weekly basis. I would like to put the
formulas in the spreadsheet for the full year and not have cells populate
with error messages due to the fact that the corresponding data has not
yet
been entered. In Excel there is a way to put a formula in a cell yet not
have
the cell populate with anything till the corresponding data is entered.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Hiding cell information

I should have also noted that there is a formula already in each cell ex.
=SUM((F4*1000/D4)) - this one is producing an error #DIV/0! as the cells on
the next worksheet are not populated. Other cells are populating with 0 due
to no data.

"Rescueme" wrote:

I am working in Excel 2003 with a spreadsheet that is being set up for a full
year and data will be added on a weekly basis. I would like to put the
formulas in the spreadsheet for the full year and not have cells populate
with error messages due to the fact that the corresponding data has not yet
been entered. In Excel there is a way to put a formula in a cell yet not have
the cell populate with anything till the corresponding data is entered.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Hiding cell information

David my information is coming from a seperate sheets in cells
'2008_Data'!B4:H4
Current formula in first cell is: =SUM(1100-'2008_Data'!B4) in this one I am
having 1100 show up as an answer in all cells.

in second cell is: =SUM('2008_Data'!C5-'2008_Data'!C4) - this type are
showing with a 0 value

in third cell is: =SUM((F4*1000/D4)) - her I get the standard error #DIV/0!

"David Biddulph" wrote:

Yes. On how many cells of data does your formula depend?
If just 1 cell, then =IF(A2="","",your_formula)
If say 3 cells, then =IF(COUNT(A2:C2)=3,your_formula,"")
--
David Biddulph

"Rescueme" wrote in message
...
I am working in Excel 2003 with a spreadsheet that is being set up for a
full
year and data will be added on a weekly basis. I would like to put the
formulas in the spreadsheet for the full year and not have cells populate
with error messages due to the fact that the corresponding data has not
yet
been entered. In Excel there is a way to put a formula in a cell yet not
have
the cell populate with anything till the corresponding data is entered.




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Hiding cell information

Instead of =SUM(1100-'2008_Data'!B4), make this:

=IF('2008_Data'!B4="","",1100-'2008_Data'!B4)

Instead of =SUM('2008_Data'!C5-'2008_Data'!C4), change this to:

=IF(OR('2008_Data'!C5="",'2008_Data'!C4=""),"",'20 08_Data'!
C5-'2008_Data'!C4)

And instead of =SUM((F4*1000/D4)), amend this to:

=IF(OR(F4="",D4=0),"",F4*1000/D4)

You don't need SUM in any of the formulae.

Hope this helps.

Pete

On Dec 24, 5:00*pm, Rescueme
wrote:
David my information is coming from a seperate sheets in cells
'2008_Data'!B4:H4
Current formula in first cell is: =SUM(1100-'2008_Data'!B4) in this one I am
having 1100 show up as an answer in all cells.

in second cell is: =SUM('2008_Data'!C5-'2008_Data'!C4) - this type are
showing with a 0 value

in third cell is: =SUM((F4*1000/D4)) - her I get the standard error #DIV/0!



"David Biddulph" wrote:
Yes. *On how many cells of data does your formula depend?
If just 1 cell, then =IF(A2="","",your_formula)
If say 3 cells, then =IF(COUNT(A2:C2)=3,your_formula,"")
--
David Biddulph


"Rescueme" wrote in message
...
I am working in Excel 2003 with a spreadsheet that is being set up for a
full
year and data will be added on a weekly basis. I would like to put the
formulas in the spreadsheet for the full year and not have cells populate
with error messages due to the fact that the corresponding data has not
yet
been entered. In Excel there is a way to put a formula in a cell yet not
have
the cell populate with anything till the corresponding data is entered..- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Hiding cell information

"Rescueme" wrote in message
...
David my information is coming from a seperate sheets in cells
'2008_Data'!B4:H4
Current formula in first cell is: =SUM(1100-'2008_Data'!B4) in this one I
am
having 1100 show up as an answer in all cells.


In every case *please* get rid of the unnecessary SUM() function. Look in
Excel help at what SUM() does. It takes a list of separate arguments and
adds them together. You don't have a list of separate arguments that you
want to add together, so you don't want the SUM function.

=IF('2008_Data'!B4="","",1100-'2008_Data'!B4)

in second cell is: =SUM('2008_Data'!C5-'2008_Data'!C4) - this type are
showing with a 0 value


=IF(COUNT('2008_Data'!C5,'2008_Data'!C4)=2,'2008_D ata'!C5-'2008_Data'!C4,"")

in third cell is: =SUM((F4*1000/D4)) - her I get the standard error
#DIV/0!


=IF(OR(D4=0,F4=""),"",F4*1000/D4)
--
David Biddulph


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Hiding cell information

Thank you Pete I have success and have the spreadsheet working

"Pete_UK" wrote:

Instead of =SUM(1100-'2008_Data'!B4), make this:

=IF('2008_Data'!B4="","",1100-'2008_Data'!B4)

Instead of =SUM('2008_Data'!C5-'2008_Data'!C4), change this to:

=IF(OR('2008_Data'!C5="",'2008_Data'!C4=""),"",'20 08_Data'!
C5-'2008_Data'!C4)

And instead of =SUM((F4*1000/D4)), amend this to:

=IF(OR(F4="",D4=0),"",F4*1000/D4)

You don't need SUM in any of the formulae.

Hope this helps.

Pete

On Dec 24, 5:00 pm, Rescueme
wrote:
David my information is coming from a seperate sheets in cells
'2008_Data'!B4:H4
Current formula in first cell is: =SUM(1100-'2008_Data'!B4) in this one I am
having 1100 show up as an answer in all cells.

in second cell is: =SUM('2008_Data'!C5-'2008_Data'!C4) - this type are
showing with a 0 value

in third cell is: =SUM((F4*1000/D4)) - her I get the standard error #DIV/0!



"David Biddulph" wrote:
Yes. On how many cells of data does your formula depend?
If just 1 cell, then =IF(A2="","",your_formula)
If say 3 cells, then =IF(COUNT(A2:C2)=3,your_formula,"")
--
David Biddulph


"Rescueme" wrote in message
...
I am working in Excel 2003 with a spreadsheet that is being set up for a
full
year and data will be added on a weekly basis. I would like to put the
formulas in the spreadsheet for the full year and not have cells populate
with error messages due to the fact that the corresponding data has not
yet
been entered. In Excel there is a way to put a formula in a cell yet not
have
the cell populate with anything till the corresponding data is entered..- Hide quoted text -


- Show quoted text -



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
hiding 1 cell duckie Excel Discussion (Misc queries) 2 October 5th 07 03:18 PM
Viewing information after hiding columns / rows Annie Excel Discussion (Misc queries) 2 February 21st 07 03:36 PM
Viewing information after hiding columns / rows john Excel Discussion (Misc queries) 0 February 21st 07 02:11 PM
hiding the cell and the formula bar Lou Sanderson Excel Discussion (Misc queries) 2 October 18th 06 09:59 PM
Hiding "Send To Mail Recipient" Information In Excel SLorenson Excel Discussion (Misc queries) 2 September 14th 05 08:34 PM


All times are GMT +1. The time now is 10:37 AM.

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

About Us

"It's about Microsoft Excel"