I have some VBA that requires an array to be initialised. It is a simple 8-element string array, which is working fine when populated in the code as follows:
ArrayIn = Array("A", "B", "C", "D", "E", "F", "G", "H")
I would like to have this populated from a named range, thereby allowing the user...