Hi people. I am trying to create a Public variable (num) and set the value to 6. I want to use this to reference a cell in a specific range (ie. Range("A" & num) = Range ("A6"). I was able to declare the Public variable in the module, but I am have trouble with setting the variable to 6. If I use Set num = 6 it comes up with an error, or if I put num = 6 the value of num is empty. I have done this in the past with a For Next, but I don't require it for this particular purpose. Any suggestions? DAVE