In my script, I'm trying to have data grabbed and placed in excel as a list.
Range("A1"
.Select
^ This works perfectly fine, but I want it to be a list, so I've substituted 1 with a variable, and the variable is the number I want it to be in. The variable is already declared, and I've made the following line, but for some reason it gives me an error.
Range("A" & i).Select
Any ideas as to why this is doing that? "i" is declared as the number I want it to be. Thanks.
Range("A1"
^ This works perfectly fine, but I want it to be a list, so I've substituted 1 with a variable, and the variable is the number I want it to be in. The variable is already declared, and I've made the following line, but for some reason it gives me an error.
Range("A" & i).Select
Any ideas as to why this is doing that? "i" is declared as the number I want it to be. Thanks.