Hello,
I am trying to populate one column(drop-down) B based on the value selected in another column(drop-down value) A.
I am able to successfully achieve the functionality by doing appropriate mappings and using INDIRECT() function.
But, now the problem is, my cell values has parenthesis like "Marketing Services (T)" in A and in such cases, my drop-down in B is not being populated.
If I select a value from A which has no parenthesis\brackets, the corresponding values are getting populated in B appropriately.
It is not working only for the values having brackets.
I have tried to replace the brackets and space characters with underscore but still in vain. Your help is much appreciated !!
=INDIRECT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"(",""),")","")," ","_"))
=INDIRECT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1," ","_"),"(","_"),")","_"))
Bookmarks