Hi Carl
You could use this:
Dim Rw As Long
Rw = 10
Range("C" & Rw & ",E" & Rw & ",G" & Rw & _
" ,I" & Rw & ",K" & Rw & ",M" & Rw & ",O" & Rw _
& ",Q" & Rw & ",S" & Rw & ",T" & Rw).Select
Dave
OzGrid Business Applications
THANK YOU Dave, I have been struggling over that for two weeks now and everything I tried kept erroring out on me.
Hi Carl
It should work, no reason why it shouldn't.
Paste this in as is, just delete the occurences of :
Sub a()
Dim Rw As Long
Rw = 10
Range("C" & Rw & ",E" & Rw & ",G" & Rw & _
" ,I" & Rw & ",K" & Rw & ",M" & Rw & ",O" & Rw _
& ",Q" & Rw & ",S" & Rw & ",T" & Rw).Select
End Sub
Dave
OzGrid Business Applications