Hi folks
As part of my macro I have the following code:
However the value of x is the full cell address (including column and row).
Can this be changed to get x = row number?
Cheers
</pre>
As part of my macro I have the following code:
Code:
x = Range("A1").End(xldown).Select.Address
For a = 3 To x
If... Then...
Next a
However the value of x is the full cell address (including column and row).
Can this be changed to get x = row number?
Cheers
</pre>