I've been using a combination of VLOOKUPs and consequent HLOOKUPS to get the data I need, but as my data set increases in size I'd like to reduce the amount of data held in an "At a Glance" style table.
Essentially what I am looking for is to take all of the data from the below example table, headers are on the leftmost column due to the way the spreadsheet is layed out, and put them into an auto updating table on a separate sheet, but I would like to exclude all instances of "Completed" from this second table. I cannot simply remove these values from the first table as they are required for reporting in other areas of the workbook.
So table one looks like this:
ID 1 2 3 4 5
REF 0152 0197 0258 0269 0270
Assigned Date 01-Dec 02-Dec 03-Dec 04-Dec 05-Dec
Status Completed In Service In Progress Completed Assigned
and table two should look this this
ID REF Status
2 0197 In Service
3 0258 In Progress
5 0270 Assigned
I'd like to acheive this in an automated fashion, with no blank rows in the second table if possible. And I'd like to keep away from doing this in VBA if possible too.
I think I need to use a combination of the IF, SMALL, INDEX and MATCH functions, but this is more advanced formulae than I've written so far and I'm struggling to make sense of any tutorials I've found online.
Bookmarks