Averaging Data continuously when using Filter function - Need Help

M

MGray

Need formula to average column of numbers as is, and as they will be as I
sort by using the Filter.


I can do this for total counts using the =Subtotal(9,xx:xx) function but
can't figure out how to do it for averages.

Much appreciation!
 
T

T. Valko

=Subtotal(9,xx:xx)

Replace the 9 with a 1 to get the average. See help on the SUBTOTAL function
for the list of index numbers and their meaning.
 
T

T. Valko

=Subtotal(9,xx:xx)

Replace the 9 with a 1 to get the average. See help on the SUBTOTAL function
for the list of index numbers and their meaning.
 
S

Sheeloo

Use 1 (to include hidden values) or 101 (to exclude hidden values) instead of
9 to get average...
Filtered values are always excluded.

Look in Help for subtotal for details.
 
S

Sheeloo

Use 1 (to include hidden values) or 101 (to exclude hidden values) instead of
9 to get average...
Filtered values are always excluded.

Look in Help for subtotal for details.
 
L

Luke M

Use the average function number.

=SUBTOTAL(1,xx:xx)

Note that function #9 is sum, not count (#2).
 
L

Luke M

Use the average function number.

=SUBTOTAL(1,xx:xx)

Note that function #9 is sum, not count (#2).
 

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