Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Averaging Problem Still Not Resolved - DailyMoodTrTool.xls (1/1)

I am uploading a copy of the workbook that I am working on so that it is
clear what I am talking about. I have set up a tool for my patients
where they can log a numerical rating by symptom, by day and see an
average of how they are responding to each symptom at the end of the
month and with symptoms overall each day. I want to provide an average
of all symptoms at the end of the month. You will notice on the
workbook that the dates are across the top and the symptoms are down the
side. The formula for the daily average of all symptoms is
=AVERAGE(B5:B34) and it works fine. The formula to average each symptom
as numerical values are entered through the end of the month is
=AVERAGE(B5:AF5) and it works fine. Problem is that when I enter
=AVERAGE(AG5:AG34) it is accepted as a formula and shows up as ## in the
orange cell, however when I enter data in the workbook this cell does
not display a numerical value. I know it is a average of averages,
however, it wouldn't matter. I am merely telling it to average a column
of numerical values, aren't I. What am I missing. I am a newbie and
just wanting to make this work!! Can anyone help? What formula needs
to go into AG36 to make this work??


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Averaging Problem Still Not Resolved - DailyMoodTrTool.xls (1/1)

When Excel displays number signs (##), it's trying to tell you that the cell
isn't wide enough to display the result. Simply increase the width of the
column.

A good trick is to double click on the boundary of the column on the right
(when you get the double headed arrow). That will make the column wide
enough to display all results in the column.

Regards,
Fred.

"Michael Roback" wrote in message
...
I am uploading a copy of the workbook that I am working on so that it is
clear what I am talking about. I have set up a tool for my patients
where they can log a numerical rating by symptom, by day and see an
average of how they are responding to each symptom at the end of the
month and with symptoms overall each day. I want to provide an average
of all symptoms at the end of the month. You will notice on the
workbook that the dates are across the top and the symptoms are down the
side. The formula for the daily average of all symptoms is
=AVERAGE(B5:B34) and it works fine. The formula to average each symptom
as numerical values are entered through the end of the month is
=AVERAGE(B5:AF5) and it works fine. Problem is that when I enter
=AVERAGE(AG5:AG34) it is accepted as a formula and shows up as ## in the
orange cell, however when I enter data in the workbook this cell does
not display a numerical value. I know it is a average of averages,
however, it wouldn't matter. I am merely telling it to average a column
of numerical values, aren't I. What am I missing. I am a newbie and
just wanting to make this work!! Can anyone help? What formula needs
to go into AG36 to make this work??



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Averaging Problem Still Not Resolved - DailyMoodTrTool.xls (1/1)

To avoid the #DIV/0 errors which occur when you have no data, change your
formulas to:

=if(sum(...)=0,"",average(...))

Regards,
Fred.

"Michael Roback" wrote in message
...
I am uploading a copy of the workbook that I am working on so that it is
clear what I am talking about. I have set up a tool for my patients
where they can log a numerical rating by symptom, by day and see an
average of how they are responding to each symptom at the end of the
month and with symptoms overall each day. I want to provide an average
of all symptoms at the end of the month. You will notice on the
workbook that the dates are across the top and the symptoms are down the
side. The formula for the daily average of all symptoms is
=AVERAGE(B5:B34) and it works fine. The formula to average each symptom
as numerical values are entered through the end of the month is
=AVERAGE(B5:AF5) and it works fine. Problem is that when I enter
=AVERAGE(AG5:AG34) it is accepted as a formula and shows up as ## in the
orange cell, however when I enter data in the workbook this cell does
not display a numerical value. I know it is a average of averages,
however, it wouldn't matter. I am merely telling it to average a column
of numerical values, aren't I. What am I missing. I am a newbie and
just wanting to make this work!! Can anyone help? What formula needs
to go into AG36 to make this work??



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default Averaging Problem Still Not Resolved - DailyMoodTrTool.xls (1/1)

One caveat, a SUM() of zero may be a legitimate return, better to use:

=IF(COUNT(....)=0,"",AVERAGE(.......))

or

=IF(COUNT(......),AVERAGE(.......),"")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Fred Smith" wrote in message
...
To avoid the #DIV/0 errors which occur when you have no data, change your
formulas to:

=if(sum(...)=0,"",average(...))

Regards,
Fred.

"Michael Roback" wrote in message
...
I am uploading a copy of the workbook that I am working on so that it is
clear what I am talking about. I have set up a tool for my patients
where they can log a numerical rating by symptom, by day and see an
average of how they are responding to each symptom at the end of the
month and with symptoms overall each day. I want to provide an average
of all symptoms at the end of the month. You will notice on the
workbook that the dates are across the top and the symptoms are down the
side. The formula for the daily average of all symptoms is
=AVERAGE(B5:B34) and it works fine. The formula to average each symptom
as numerical values are entered through the end of the month is
=AVERAGE(B5:AF5) and it works fine. Problem is that when I enter
=AVERAGE(AG5:AG34) it is accepted as a formula and shows up as ## in the
orange cell, however when I enter data in the workbook this cell does
not display a numerical value. I know it is a average of averages,
however, it wouldn't matter. I am merely telling it to average a column
of numerical values, aren't I. What am I missing. I am a newbie and
just wanting to make this work!! Can anyone help? What formula needs
to go into AG36 to make this work??







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
problem with an averaging formula Bobbie Excel Discussion (Misc queries) 2 January 19th 08 12:16 PM
Please-please-HELP - Really need this resolved - Allocation formul Chunkey Pandey Excel Worksheet Functions 4 November 24th 06 07:59 PM
Averaging/Rounding Equation problem Hansel Excel Discussion (Misc queries) 4 June 28th 05 08:45 PM
Averaging and Rounding problem Hansel Excel Worksheet Functions 5 June 21st 05 03:24 AM
I think I found a bug and need to kow how to get it resolved DMDiamond Setting up and Configuration of Excel 1 January 18th 05 12:32 AM


All times are GMT +1. The time now is 09:54 PM.

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"