Data Selection

S

S. Casey

Can anyone help me with this...

I have a yearly set of hourly data. I want to be able to take daily
averages of the data. I don't really want to have to type in the =average()
and select each days data for the entire year. Using the fill command
doesn't work because it just moves the data set down one cell and averages.
Is there an easy way of doing this that doesn't require hours of work?
 
J

Jacob Skaria

With date in colA the below formula will give you the average of the data in
colB based on the date mentioned in E1 . Please note that this is an array
formula; press CTRL+SHIFT+ENTER to enter the formula. If successful in
'Formula Bar' you can notice the curly braces at both ends like "{=<formula>}"

=AVERAGE(IF((A1:A1000=E1),B1:B1000))

If this post helps click Yes
 
S

S. Casey

Thank you Jacob. This worked perfectly. The only down fall was that the
dates that accompanied the data also had the time of day in the cells, so I
had to reinput all the dates again without the times. Thanks again.
 
S

S. Casey

The formula worked quite well. The issue was that the first column that
contained the date the data was taken also contained the time of day. Which
is fine, but when your search criteria is for 1/1/2007 it didn't find any
cells for that date because the addition of the time within the cell was
making the search come back "False". Is there a way that you can bypass this
problem? Otherwise, this is why I had to reinput the dates. As well the
times of day that the data were taken kept increasing by 1 millisecond every
few days so even if I created a search criteria to include the time of day it
seemed like this would have not been worth it and just reinputting the dates
was easier.
 
S

S. Casey

I'm sorry about that, I read the formula too quickly and missed the INT()
part of it. That would work even better, thank you very much.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top