How do I insert a filtered subtotal into overall summary

G

Guest

How do I insert a subtotal from a filtered list into an overall summary? I
have a column for tracking eg offloading, en route, POD's delivered etc. I
can establish subtotals in the filtered list but would like to have a summary
at the end of my worksheet with a breakdown of each one?
 
G

Guest

Is it possible to write a formula to count the number of cells within that
column with offloading, the number of cells with en route etc.?
 
P

Pete_UK

Use COUNTIF, e.g.:

=COUNTIF(A2:A100,"offloading")
=COUNTIF(A2:A100,"en route")

Or, if you put the word in a separate cell, eg C1, then:

=COUNTIF(A2:A100,C1)

I've assumed the data is in A1 to A100 - adjust cell references to
suit.

Hope this helps.

Pete
 

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