Advanced Filter Help

Graham182

New Member
Joined
Jan 31, 2010
Messages
31
Hi

I've been inputting data into a spreadsheet of peoples equitment,
I've got multiple of people giving them to me,

My problem is
i'm trying to find an advance filter which will make it just show up the most newest of the persons equitment.

my Spreadsheet is laid out

id number - Listing of equitment - Date logged

55124 fax 04/01/09

So is there anyway of filtering just for the equitment with there lastest Date logged number?

Thanks
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Not an advanced filter, but this works:

A1 and A4 must contain column headers

Two named ranges defined as follows:

rngEquipment
Code:
=OFFSET(Sheet1!$A$1,4,1,COUNTA(Sheet1!$A:$A)-3,1)
rngHelperDate
Code:
=OFFSET(Sheet1!$A$1,4,3,COUNTA(Sheet1!$A:$A)-3,1)

A2 is the ID Number you are looking up

D2 contains:
Code:
=MAX(rngHelperDate)
B2 contains:
Code:
=INDEX(rngEquipment,MATCH(D2,rngHelperDate,0))
A5 and down contains the list of ID Numbers
B5 and down contains the list of equipment
C5 and down contains the date

D5 and down contains a helper formula:
Code:
=(A5=$A$2)*C5
D2 contains:
Code:
=MAX(rngHelperDate)
B2 contains:
Code:
=INDEX(rngEquipment,MATCH(D2,rngHelperDate,0))
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top