Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I Have 12 months sales history on an item. rather than work out the average
over the 12 months data, I wont to enter a formula that will give me the average of the 6 highest selling months. Is there a way I can do that? I have my data set out in rows with calendar month headings across the top. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Use a nested formula. =AVERAGE(MAX(A2:L2),LARGE(A2:L2,2),LARGE(A2:L2,3), LARGE(A2:L2,4),LARGE(A2:L2,5),LARGE(A2:L2,6)) where MAX finds the largest and LARGE finds the kth average like LARGE(range,k) Then drag your formula down and you're set! "Damo" wrote: I Have 12 months sales history on an item. rather than work out the average over the 12 months data, I wont to enter a formula that will give me the average of the 6 highest selling months. Is there a way I can do that? I have my data set out in rows with calendar month headings across the top. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=AVERAGE(LARGE(A2:L2,{1,2,3,4,5,6}))
"Damo" wrote: I Have 12 months sales history on an item. rather than work out the average over the 12 months data, I wont to enter a formula that will give me the average of the 6 highest selling months. Is there a way I can do that? I have my data set out in rows with calendar month headings across the top. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Highest 12-Month Period Average Over Range of Months | Excel Worksheet Functions | |||
Average of values in row excluding the highest and lowest value? | Excel Worksheet Functions | |||
average of highest 48 of 52 radom numbers with duplicate low #'s | Excel Worksheet Functions | |||
I have 12 scores over 12 weeks . I want to average the highest 5 | Excel Worksheet Functions | |||
3 highest values | New Users to Excel |