Understanding .End(xlUp) (1,1)
Using XL 2003 & 97
Apparently, I just do not get it.
I wish to enter "Test" into the first empty cell in Column A.
Tried .Value and .FormulaR1C1 to no avail.
The code does not bomb but "Test" does not show up anywhere on
Worksheet("Sheet2").
Is xlUp(1, 1) kind-of like Offset(1, 1)?
Sub Test()
With Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp)(1, 1).Value = "Test"
End With
End Sub
TIA Dennis
|