VBA basic question
With Worksheets("Stats").Range(p$)
For Each c In .Range
Hi. You have answers from others.
Just to point out, your method would work if you drilled one level down ie.
"Cells" instead of "Range."
Sub Demo()
Dim P$
Dim C As Range
P$ = "C3:C20"
With Worksheets("Stats").Range(P$)
For Each C In .Cells
Debug.Print C.Value
Next
End With
End Sub
--
HTH :)
Dana DeLouis
Windows XP & Office 2003
"kirkm" wrote in message
...
I should know why this doesn't work...but
get 'Wrong number of arguments or invalid property assignment'
and can't resolve it.
With Worksheets("Stats").Range(p$)
For Each c In .Range
Debug.Print c.Value
Next
End With
The value of p$ is "C3:C20"
Many thanks - Kirk
|