B
bjshots
I would like to refer to the Range of the ActiveCell in code
dim MyNum as integer
for MyNum = 25 to 50 Step 1
If ActiveCell = Range("C" & MyNum) then
Range("C" & MyNum) = "Hello World"
end if
next
I have tried ActiveCell.Range but then I receive an Error from VBA.
I have been able to extract the value from the active cell but I wan
to test for the range.
thanks
BjShot
dim MyNum as integer
for MyNum = 25 to 50 Step 1
If ActiveCell = Range("C" & MyNum) then
Range("C" & MyNum) = "Hello World"
end if
next
I have tried ActiveCell.Range but then I receive an Error from VBA.
I have been able to extract the value from the active cell but I wan
to test for the range.
thanks
BjShot