• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

extracting data from a table

duneman

New Member
Hi, I am hoping to create a list using the data from a table.

A drop-down date chooses the column is taken from and the numbers in the column indicate the items that I want in the list.

I can use formulae but I'm challenged by getting a whole set of data from one table into another.


Thank you in advance for your help.

Regards
Geoff
 

Attachments

  • sample file.xlsx
    11.4 KB · Views: 8
Last edited:
Try…...................

1] In J6, copied down :

=IFERROR(INDEX(B$4:B$30,AGGREGATE(15,6,ROW(B$4:B$30)-ROW(B$3)/(INDEX(C$4:E$30,0,MATCH(J$3,C$3:E$3,0))>0),ROWS($1:1))),"")

2] In K6, copied down :

=IF(J6="","",INDEX(C$4:E$30,MATCH(J6,B$4:B$30,0),MATCH(J$3,C$3:E$3,0)))

3] Select the other date in J3 dropdown list for testing purpose.

Regards
Bosco
 

Attachments

  • ExtractTableData.xlsx
    13.1 KB · Views: 8
Wow, Bosco, that is fantastic.
A wish come true and a couple more formulae to study and learn from!
Many Thanks
Geoff
 
Back
Top