Hi All,
I've been trying to find an array formula for a dependant drop down list I saw a few years ago.
Basically, I have three Source columns (Category, SubCategory, Details) that I need to work with.
Constraints:
Must not use VBA, Helper Columns, Macros
Source is not defined as a Table
Source is not sorted
Details Category has Blanks
around 450 Rows in source (pretty stable) but data is not static
I need to be able to pull a list of unique values for the drop down, based on the value in a given cell.
Example source data (Trimmed)
Category SubCategory Details
Espnts Acceil Acceil
Espnts Zonant
Espnts Murons
Espnts Ateées Atede)
Espnts Ateées Atete)
Espnts Ateées Atete)
Tranel Autnel
Tranel Poste) DSCDSC
Tranel Poste) RSSSSC
Tranel Comion
Coneil Bureau Bur0''
Coneil Bureau Burx12
Coneil Espeil ± 99x9
Coneil Espeil ± 9 PF
Coneil Espeil ± 9res
Coneil Poste) Poseil
Coneil Poste) PosCST
Coneil Bureau Adj0''
Coneil Bureau Adj0''
Coneil Bureau Salrs.
Coneil Esptif Zonrs.
Coneil Bureau Salrs.
Coneil Bureau
Coneil Bureau Salrs.
Opénel Mécée)
Using the following array formula on multiple rows in sheet 2, and ... given sheet2!$F$2="Bureau",
I obtain the following Unique Values in Column G...
{=IFERROR(INDEX(Details, SMALL(IF(($F$2=SubCategory)*(COUNTIF($G$1:G1, Details)=0), ROW(SubCategory)-MIN(ROW(SubCategory))+1, ""), 1)),"")}
Column G
1 Bur0''
2 Burx12
3 Adj0''
4 Salrs.
5
What I would like is a drop down in $G$2 where the values available are {Bur0'', Burx12, Adj0'', Salrs} if F2 = "Bureau"
Any and All help would be appreciated
Thanks,
I've been trying to find an array formula for a dependant drop down list I saw a few years ago.
Basically, I have three Source columns (Category, SubCategory, Details) that I need to work with.
Constraints:
Must not use VBA, Helper Columns, Macros
Source is not defined as a Table
Source is not sorted
Details Category has Blanks
around 450 Rows in source (pretty stable) but data is not static
I need to be able to pull a list of unique values for the drop down, based on the value in a given cell.
Example source data (Trimmed)
Category SubCategory Details
Espnts Acceil Acceil
Espnts Zonant
Espnts Murons
Espnts Ateées Atede)
Espnts Ateées Atete)
Espnts Ateées Atete)
Tranel Autnel
Tranel Poste) DSCDSC
Tranel Poste) RSSSSC
Tranel Comion
Coneil Bureau Bur0''
Coneil Bureau Burx12
Coneil Espeil ± 99x9
Coneil Espeil ± 9 PF
Coneil Espeil ± 9res
Coneil Poste) Poseil
Coneil Poste) PosCST
Coneil Bureau Adj0''
Coneil Bureau Adj0''
Coneil Bureau Salrs.
Coneil Esptif Zonrs.
Coneil Bureau Salrs.
Coneil Bureau
Coneil Bureau Salrs.
Opénel Mécée)
Using the following array formula on multiple rows in sheet 2, and ... given sheet2!$F$2="Bureau",
I obtain the following Unique Values in Column G...
{=IFERROR(INDEX(Details, SMALL(IF(($F$2=SubCategory)*(COUNTIF($G$1:G1, Details)=0), ROW(SubCategory)-MIN(ROW(SubCategory))+1, ""), 1)),"")}
Column G
1 Bur0''
2 Burx12
3 Adj0''
4 Salrs.
5
What I would like is a drop down in $G$2 where the values available are {Bur0'', Burx12, Adj0'', Salrs} if F2 = "Bureau"
Any and All help would be appreciated
Thanks,