1

I am having a bit of trouble getting an index match formula to work.

My data table is in sheet3. In column one I have different items (like Fasso) and then I have values for each day in the remaining columns. E.g.

Date to Use     31/01/17    02/02/17    06/02/17
FASSO               0.00    12.99   0.00
FBLDR               8.68    8.57    0.00
FBSPB               7.78    8.01    0.00
FBSRB               9.18    9.07    0.00
FCGAR               9.52    9.97    0.00

On Sheet1 I have a drop down on item e.g. Fasso, and I select a date range whic creates a list of dates below. How can I pull through the correct data for that particular item and each of the dates?

Spreadsheet is file

1
  • Your question is not that clear but I'm guessing you should just lock ranges inside your formula like $A$1:$A$10 for example.
    – zipa
    Commented Feb 16, 2017 at 13:22

1 Answer 1

1

From your attachment, I think you want this in Sheet3, cell B14

=INDEX(Sheet1!$D$3:$L$46,MATCH(Sheet3!$A$4,Sheet1!$A$3:$A$46,0),MATCH($A14,Sheet1!$D$2:$L$2,0))

Some of your dates don't exist in your table (in Sheet1) though, so they will show #N/A

2
  • Happy to help. I also edited your question to give you an idea of how to best to ask in future -- after all, the better your question is, the more likely you are to get help :)
    – CallumDA
    Commented Feb 16, 2017 at 14:00
  • Thanks Callum, all the help is appreciated.
    – jayuk
    Commented Feb 17, 2017 at 14:16

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.