pivot table

F

Franci

example of fields in my data table:
Legal Acres Expiration
1-1N-5W 50 8/9/2009
1-1N-5W 20 9/9/2009
1-1N-5W 10 10/9/2009

My pivot table shows the total acres per legal and but I don't know how to
show the earliest expiration date per legal. Any ideas?
 
J

Jim Thomlinson

Depends how you want to aggregate. If you want the total acres of all
recordsand the Min date then it is fairly easy.
Add the Date field to the data section and select Min as the aggregation type.

If you want to only aggreaget the min values then you need to add a field to
your source data to flag the min of each legal. Not too bad with an array
formula

=min(if(...))
 
F

Franci

That works. Thank you!

Jim Thomlinson said:
Depends how you want to aggregate. If you want the total acres of all
recordsand the Min date then it is fairly easy.
Add the Date field to the data section and select Min as the aggregation type.

If you want to only aggreaget the min values then you need to add a field to
your source data to flag the min of each legal. Not too bad with an array
formula

=min(if(...))
 

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