Hi,
I need some help with a drop down list, if been googling sinds yesterday, tried a bunch of stuff but unable to get what i'm trying to achieve.
I have a list:
I want a drop down list based on where there is an "x", example:
Row 5: has an "x" in J, so the drop down should show "IFS Logistics"
Row 26: has "x" in F, K so the drop down should show "BRC Food, IFS Food" underneath each other (not next to each other).
I could just select the full row but I don't want blanks in the drop down:
If got a formula to separate them with a comma, but now I need to get this in to a drop down as follows
Example row 26:
BRC Food
IFS Food
...
And not as BRC Food, IFS Food
I tried the following formulas, but without success.
Is there anything else I can try? It's not limited to 2 "x" per lane.
Thank you
David
I need some help with a drop down list, if been googling sinds yesterday, tried a bunch of stuff but unable to get what i'm trying to achieve.
I have a list:
Test-new.xlsm | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | K | L | M | |||
4 | BRC ASDA | BRC Agents & Brokers | BRC Packaging Materials | BRC S&D | BRC Food | FSSC 22000 | BRC GFCP | IFS Broker | IFS Logistics | IFS Food | IFS Wholesalte Cash & Carry | IFS Global Markets Food | ||
5 | x | |||||||||||||
6 | x | |||||||||||||
7 | x | |||||||||||||
8 | x | |||||||||||||
9 | x | |||||||||||||
10 | x | |||||||||||||
11 | x | |||||||||||||
12 | x | |||||||||||||
13 | x | |||||||||||||
14 | x | |||||||||||||
15 | x | |||||||||||||
16 | x | |||||||||||||
17 | x | |||||||||||||
18 | x | |||||||||||||
19 | x | |||||||||||||
20 | x | |||||||||||||
21 | x | x | ||||||||||||
22 | x | |||||||||||||
23 | x | |||||||||||||
24 | x | |||||||||||||
25 | x | x | ||||||||||||
26 | x | x | ||||||||||||
Follow-up |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B5:M26 | B5 | =IFNA(INDEX(Certivin!$M:$M,MATCH(1,($A5=Certivin!$A:$A)*(B$4=Certivin!$C:$C),0)),"") |
I want a drop down list based on where there is an "x", example:
Row 5: has an "x" in J, so the drop down should show "IFS Logistics"
Row 26: has "x" in F, K so the drop down should show "BRC Food, IFS Food" underneath each other (not next to each other).
I could just select the full row but I don't want blanks in the drop down:
If got a formula to separate them with a comma, but now I need to get this in to a drop down as follows
Code:
=TEXTJOIN(", ",,IF(B26:M26="x",$B$4:$M$4,""))
Example row 26:
BRC Food
IFS Food
...
And not as BRC Food, IFS Food
I tried the following formulas, but without success.
Code:
=INDIRECT(SUBSTITUTE(BB26,",",""))
Code:
=SUBSTITUTE(BB26,",","")
Is there anything else I can try? It's not limited to 2 "x" per lane.
Thank you
David