A VBA procedure must document its analysis steps in a log sheet. Which approach writes text to the next available row automatically?
-
A
Cells(1,1).Value = log
-
B
Cells(Rows.Count,1).End(xlUp).Offset(1,0).Value = log
-
C
Range("A:A").Last.Value = log
-
D
ActiveCell.Value = log