Hi! I am trying to create an array that looks like this:
vtFields = Array(Range("B4").Value, Range("R4").Value)
This works fine but I want the array to contain Range("b4").value to eg Range("CC109").value and then it takes ALOT of time to write the array manually. is there any way of doing this without writing every element in the array? Thanks for any help!
vtFields = Array(Range("B4").Value, Range("R4").Value)
This works fine but I want the array to contain Range("b4").value to eg Range("CC109").value and then it takes ALOT of time to write the array manually. is there any way of doing this without writing every element in the array? Thanks for any help!