Forum Discussion
Aprilklfg
Jul 25, 2023Copper Contributor
extract info from an excel table to separate worksheet
Hello I have a very long table with lots of columns and at the end is the info I want to use to form a dashboard (I've copied a very small sample below) I want to extract (?) from this worksheet a ...
HansVogelaar
Jul 25, 2023MVP
Let's say your data are on a sheet named Data Sheet.
On the sheet with the data validation drop down, enter Company in A3, and enter the following formula in A4
=FILTER('Data Sheet'!A:A, INDEX('Data Sheet'!B:P, , MATCH(A1, 'Data Sheet'!B1:P1, 0))="Yes", "")
Adjust the ranges if your data extend beyond column P.
This will spill to as many cells as needed.
Aprilklfg
Jul 26, 2023Copper Contributor
Thanks for this - unfortunately as I've got an older version of Excel the Filter function isn't available.
I'll try your solution when we upgrade our systems, soon hopefully!
Thanks !
April
I'll try your solution when we upgrade our systems, soon hopefully!
Thanks !
April
- HansVogelaarJul 26, 2023MVP
Here is a formula that works in all versions of Excel. See attachment.