Forum Discussion

Wriggs's avatar
Wriggs
Copper Contributor
Jan 14, 2025
Solved

Need some help with pulling data from a table

So, I'm having a bit of trouble pulling a list of names from one table, onto another table. I have a table on a worksheet named 'I', where all my data and info is, and the table is named 'Shops'. In ...
  • HansVogelaar's avatar
    Jan 14, 2025

    If you convert the table on the Store sheet, you can use the FILTER function in B5:

    =FILTER(Shops, Shops[#Headers]=D1, "")

    This will spill to as many rows as needed.

    If you prefer to leave it as a table, that won't work. Enter the following formula in B5 instead, then fill down to B24.

    =IFERROR(INDEX(Shops, ROW(A1), XMATCH($D$1, Shops[#Headers])), "")