Hey, so i have an excel file with tens of thousands of rows of data. The data is sorted by day, and there is about 70 entries per day. so it would look something similar to:
4/15/2005.......36.......72
4/15/2005.......45.......76
4/15/2005.......47.......69
4/15/2005.......52.......59
4/15/2005.......39.......51
4/15/2005.......34.......45
4/16/2005.......39.......60
4/16/2005.......52.......67
4/16/2005.......53.......69
4/16/2005.......58.......76
4/16/2005.......45.......58
4/16/2005.......40.......55
except each day has around 70 entries instead of 6 (but not every day has the same number of entries), and this goes over a period over about 7 years of daily data.
I need to take the Average of collumns B & C, as well as the Max and Min of collumn B. I'm completely new to VBA, trying to learn, and doing this by conventional excel methods will take forever. Any suggestions would be appreciated!
-Thanks
4/15/2005.......36.......72
4/15/2005.......45.......76
4/15/2005.......47.......69
4/15/2005.......52.......59
4/15/2005.......39.......51
4/15/2005.......34.......45
4/16/2005.......39.......60
4/16/2005.......52.......67
4/16/2005.......53.......69
4/16/2005.......58.......76
4/16/2005.......45.......58
4/16/2005.......40.......55
except each day has around 70 entries instead of 6 (but not every day has the same number of entries), and this goes over a period over about 7 years of daily data.
I need to take the Average of collumns B & C, as well as the Max and Min of collumn B. I'm completely new to VBA, trying to learn, and doing this by conventional excel methods will take forever. Any suggestions would be appreciated!
-Thanks