This topic will piggyback off of another thread that I "technically" think is answered, but the project isn't finished.
I have a list that I copy from Notepad in cell A6. I want the contents that I paste to go to an array. I'm lost, everything I've tried keeps getting type mismatches. I actually don't remember everything I've tried. Anyways, the list goes from A6 until it ends, (downward) it varies.
THIS code will select the range I need. As far as storing it into an array, I'm not sure how to do this.
My other thread: here.
I have a list that I copy from Notepad in cell A6. I want the contents that I paste to go to an array. I'm lost, everything I've tried keeps getting type mismatches. I actually don't remember everything I've tried. Anyways, the list goes from A6 until it ends, (downward) it varies.
THIS code will select the range I need. As far as storing it into an array, I'm not sure how to do this.
VBA Code:
Range("A6", Range("A6").End(xlDown)).Select
My other thread: here.