Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default A problem with #DIV/0! and circular reference errors

Hi,

Please forgive this long winded request but I am going to try and make this
problem as clear as I possibly can.

I am writing a spreadsheet to assist me in my hobby as an amateur
meteorologist and also to try and teach myself how to use Excel. Everything
is going well with a couple of exceptions.

I have formatted the sheet into the twelve months from columns D to AA with
two columns per month for Max/Min temps and the appropriate number of days
for each month down to rows 40-42. Each cell is conditionally formatted to
turn red or blue if the data entered exceeds limits placed on it.

At the bottom each column, I have three rows showing the maximum temperature
for the month, the minimum for the month and the average for the month; its
the average row that I am having a problem with. Until data is entered into
at least one cell for the month, the average shown for each month is #DIV/0!
I have tried the formula =IF(F11:F40,0,"",AVERAGE(F11:F40)) but that only
changes the error to a circular reference error, an error that I just can't
see or understand.

My second problem relates to the formula I have for showing the lowest
temperature for the year which automatically updates day by day. Even
though I have low temperatures showing at the foot of monthly columns, the
yearly low is showing as zero, I think because some columns do not have any
data as yet, the formula of =MIN(D49:AA49) is reading blank cells as '0'

I think the basic problem is my not being able to have empty cells display
as exacty that, empty cells; they are displaying as 0. Can anyone put me on
the right path to a solution?

I thank you all for taking the time to read this.

Cheers,


--
Wal
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default A problem with #DIV/0! and circular reference errors

Dear Wal

Don't be sorry, i prefer a long text where everything the user knows
is explained than asking 12 times to be able to respond.

To your first problem.

If you have no data, Average will always give you DIV/0, this should
work though:
=IF(COUNT(F11:F40)=0,"",AVERAGE(F11:F40))

Concerning your other formula-problem, have a look at this site:
http://www.ozgrid.com/Excel/minimum-without-zero.htm

One advice: Try to search google before posting, there are lots of
sources for excel formulas out there which can help you. Sometimes you
don't know what to search for or you can't find it, that's when the
forum comes in handy.

hth

Carlo


On Jan 16, 10:47*am, Wally3178
wrote:
Hi,

Please forgive this long winded request but I am going to try and make this
problem as clear as I possibly can.

I am writing a spreadsheet to assist me in my hobby as an amateur
meteorologist and also to try and teach myself how to use Excel. * Everything
is going well with a couple of exceptions.

I have formatted the sheet into the twelve months from columns D to AA with
two columns per month for Max/Min temps and the appropriate number of days
for each month down to rows 40-42. * Each cell is conditionally formatted to
turn red or blue if the data entered exceeds limits placed on it.

At the bottom each column, I have three rows showing the maximum temperature
for the month, the minimum for the month and the average for the month; its
the average row that I am having a problem with. * Until data is entered into
at least one cell for the month, the average shown for each month is #DIV/0! *
*I have tried the formula =IF(F11:F40,0,"",AVERAGE(F11:F40)) but that only
changes the error to a circular reference error, an error that I just can't
see or understand.

My second problem relates to the formula I have for showing the lowest
temperature for the year which automatically updates day by day. * Even
though I have low temperatures showing at the foot of monthly columns, the
yearly low is showing as zero, I think because some columns do not have any
data as yet, the formula of =MIN(D49:AA49) is reading blank cells as '0'

I think the basic problem is my not being able to have empty cells display
as exacty that, empty cells; they are displaying as 0. * Can anyone put me on
the right path to a solution?

I thank you all for taking the time to read this.

Cheers,

--
Wal


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default A problem with #DIV/0! and circular reference errors

Thanks Carlo, the formula worked fine and I got some useful information from
the link; your blood is worth bottling, thanks again.

Cheers
--
Wal


"carlo" wrote:

Dear Wal

Don't be sorry, i prefer a long text where everything the user knows
is explained than asking 12 times to be able to respond.

To your first problem.

If you have no data, Average will always give you DIV/0, this should
work though:
=IF(COUNT(F11:F40)=0,"",AVERAGE(F11:F40))

Concerning your other formula-problem, have a look at this site:
http://www.ozgrid.com/Excel/minimum-without-zero.htm

One advice: Try to search google before posting, there are lots of
sources for excel formulas out there which can help you. Sometimes you
don't know what to search for or you can't find it, that's when the
forum comes in handy.

hth

Carlo


On Jan 16, 10:47 am, Wally3178
wrote:
Hi,

Please forgive this long winded request but I am going to try and make this
problem as clear as I possibly can.

I am writing a spreadsheet to assist me in my hobby as an amateur
meteorologist and also to try and teach myself how to use Excel. Everything
is going well with a couple of exceptions.

I have formatted the sheet into the twelve months from columns D to AA with
two columns per month for Max/Min temps and the appropriate number of days
for each month down to rows 40-42. Each cell is conditionally formatted to
turn red or blue if the data entered exceeds limits placed on it.

At the bottom each column, I have three rows showing the maximum temperature
for the month, the minimum for the month and the average for the month; its
the average row that I am having a problem with. Until data is entered into
at least one cell for the month, the average shown for each month is #DIV/0!
I have tried the formula =IF(F11:F40,0,"",AVERAGE(F11:F40)) but that only
changes the error to a circular reference error, an error that I just can't
see or understand.

My second problem relates to the formula I have for showing the lowest
temperature for the year which automatically updates day by day. Even
though I have low temperatures showing at the foot of monthly columns, the
yearly low is showing as zero, I think because some columns do not have any
data as yet, the formula of =MIN(D49:AA49) is reading blank cells as '0'

I think the basic problem is my not being able to have empty cells display
as exacty that, empty cells; they are displaying as 0. Can anyone put me on
the right path to a solution?

I thank you all for taking the time to read this.

Cheers,

--
Wal



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default A problem with #DIV/0! and circular reference errors

On Jan 16, 5:24*pm, Wally3178
wrote:
Thanks Carlo, the formula worked fine and I got some useful information from
the link; your blood is worth bottling, thanks again.

Cheers
--
Wal



"carlo" wrote:
Dear Wal


Don't be sorry, i prefer a long text where everything the user knows
is explained than asking 12 times to be able to respond.


To your first problem.


If you have no data, Average will always give you DIV/0, this should
work though:
=IF(COUNT(F11:F40)=0,"",AVERAGE(F11:F40))


Concerning your other formula-problem, have a look at this site:
http://www.ozgrid.com/Excel/minimum-without-zero.htm


One advice: Try to search google before posting, there are lots of
sources for excel formulas out there which can help you. Sometimes you
don't know what to search for or you can't find it, that's when the
forum comes in handy.


hth


Carlo


On Jan 16, 10:47 am, Wally3178
wrote:
Hi,


Please forgive this long winded request but I am going to try and make this
problem as clear as I possibly can.


I am writing a spreadsheet to assist me in my hobby as an amateur
meteorologist and also to try and teach myself how to use Excel. * Everything
is going well with a couple of exceptions.


I have formatted the sheet into the twelve months from columns D to AA with
two columns per month for Max/Min temps and the appropriate number of days
for each month down to rows 40-42. * Each cell is conditionally formatted to
turn red or blue if the data entered exceeds limits placed on it.


At the bottom each column, I have three rows showing the maximum temperature
for the month, the minimum for the month and the average for the month; its
the average row that I am having a problem with. * Until data is entered into
at least one cell for the month, the average shown for each month is #DIV/0! *
*I have tried the formula =IF(F11:F40,0,"",AVERAGE(F11:F40)) but that only
changes the error to a circular reference error, an error that I just can't
see or understand.


My second problem relates to the formula I have for showing the lowest
temperature for the year which automatically updates day by day. * Even
though I have low temperatures showing at the foot of monthly columns, the
yearly low is showing as zero, I think because some columns do not have any
data as yet, the formula of =MIN(D49:AA49) is reading blank cells as '0'


I think the basic problem is my not being able to have empty cells display
as exacty that, empty cells; they are displaying as 0. * Can anyone put me on
the right path to a solution?


I thank you all for taking the time to read this.


Cheers,


--
Wal- Hide quoted text -


- Show quoted text -


You're welcome and thanks for the feedback.

Carlo
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
Circular Reference Problem Calculating Net Pay Gerard Excel Worksheet Functions 5 August 18th 06 02:15 AM
Simple Circular Reference Problem Gary Excel Worksheet Functions 2 May 12th 06 01:21 AM
Array, circular reference problem rareremedy Excel Worksheet Functions 3 April 4th 06 04:47 PM
Problem with Circular Reference Paul M Excel Discussion (Misc queries) 1 February 15th 06 01:43 AM
Circular reference problem R.Hocking Excel Discussion (Misc queries) 4 February 2nd 06 05:20 PM


All times are GMT +1. The time now is 02:10 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"