gugis,
Try this formula:
=IF('Reading'!A5="","",'Re
Ture Magnusson
Karlstad, Sweden
Main Topics
Browse All TopicsI'm doing a simple gradebook with student names and test scores...
My last page is a summary page that I have cells Referring to other pages in the book. Such as
" ='Reading'!A5 " <== simply typed "=" then clicked
on the cell I wanted to link to...
The problem is, if there's NO DATA in that cell, my
summary page enters a 0 which is a problem because those zeros get averaged into the calculation and lowers the score on the CLASS Average report (my summary page)
QUESTION IS:.
Is there a way to get the thing to simply IGNORE or leave the cell blank if there is no data to report from the referring cell?
I hope I'm making sense...
Maybe I'd use a lookup or an if/then statement?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi gugis,
Another way is to change your average formula:
- Supposing range to evaluate is A1:A20 where some 0's are to be ignored
Use this formula
=SUM(a1:a20)/(COUNT(a1:a20
This could be beneficial if you have a lot of formula's to be changed, as you don't need to interer on the individual formula's.
Even better would be to work without an extra list of values.
I mean, instead of reading the values from each individual worksheet by using the formula ='Reading'!A5 and so on, average them directly.
Example: suppose you need to take into account the cell A5 from all worksheets where the tab name of the first worksheet is for example 'Reading' and the tab name of the last to be evaluated worksheet is for example 'London', then you could use this formula:
=AVERAGE('Reading:London'!
This will automatically not take into account those worksheets where A5 is a blank.
Just some extra alternatives
calacuccia
PS. Hi ture, hi Brian :-)
Business Accounts
Answer for Membership
by: bruintjePosted on 2002-10-21 at 07:56:01ID: 7352392
Hello Gugis,
,Reading!A 5)
you could try
=if(isblank(Reading!A5),""
HAGD:O)Bruintje