Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have data in worksheet A for each month, for each entity. Then I have a
summary page which shows just the averages for each entity for each month. Then I need to create a master summary page which shows just the annual average for each entity, just one line per entity. My Summary page shows Jan-Dec in column A. I have a formula averaging the numbers from worksheet A. Jan-Mar is done. But the rest of the year hasn't happened yet, so April's formula results "#DIV/0!". I have already put in all the formulas for the year to be done with it. But I don't want all these "#DIV/0!" to appear on the spreadsheet, it makes it look bad. I want those cells to appear blank until there are actual numbers to be averaged, so the formula can show a real result, not some goofy looking err-type message that junks up the spreadsheet. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
dividing by something that isn't there IS an error, and Excel shows it as
such, regardless of what you think about it. You need to change all the formulas to check for 0. =IF(A1=0, "", B1/A1) something like that. "JudyK" wrote: I have data in worksheet A for each month, for each entity. Then I have a summary page which shows just the averages for each entity for each month. Then I need to create a master summary page which shows just the annual average for each entity, just one line per entity. My Summary page shows Jan-Dec in column A. I have a formula averaging the numbers from worksheet A. Jan-Mar is done. But the rest of the year hasn't happened yet, so April's formula results "#DIV/0!". I have already put in all the formulas for the year to be done with it. But I don't want all these "#DIV/0!" to appear on the spreadsheet, it makes it look bad. I want those cells to appear blank until there are actual numbers to be averaged, so the formula can show a real result, not some goofy looking err-type message that junks up the spreadsheet. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum of total from other worksheet with that meets one criteria | Excel Worksheet Functions | |||
Populate worksheet with data that meets date range criteria | Excel Worksheet Functions | |||
Getting a Value IF a cell meets a criteria | Excel Discussion (Misc queries) | |||
Leave Cell BLANK if no criteria met | Excel Worksheet Functions | |||
How do I go to the next cell that meets criteria | Excel Discussion (Misc queries) |