I have been struggling with an array issue, see here: (Excel VBA - Arrays for Data Validation Reference)
I want to try and simplify to see if it would make more sense.
Lets say I have a set of ranges, each with a name; Range1, Range2, etc. I set each named range to an array; MyArray1, MyArray2, etc. I then put these arrays within an array; ContainerArray
I have another array called ReferenceArray, which is based on the named range; RangeRef; which contains values Ref1, Ref2, Ref3
Reference Array populates Data Validation List 1.
Problem Statement:
If the user selects (for example) Ref1 in Data Validation List 1, I want to trigger Data Validation List 2 to fill with the respective array within the ContainerArray (so it would fill with the values from MyArray1)...
Something like:
If Data Validation List 1.Selection = ReferenceArray(i) then
Data Validation List 2 Options = ContainerArray(i)
Endif
Any help is appreciated. Thank you in advance!