Jul 25 2023 01:41 AM
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 condensed version of this onto a separate worksheet to form a dashboard without have to scroll through the table to find info.
On the separate worksheet if I select "Chainwire" from a drop down list, I would be able to see all companies that have Yes within Column E (Timber) ie 'No name 1' 'No name 4' and No name 5'
I know that I can filter the existing table for this, but as it is very long with many columns I don't want to do it that way.
Would it be a VLookup?
Jul 25 2023 02:52 AM
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.
Jul 25 2023 08:27 PM
Jul 26 2023 12:32 AM
Here is a formula that works in all versions of Excel. See attachment.