The following code is supposed to enter a single value in each cell of a range. It fills the uppermost cell, but none of the others. The value in "D2" is entered in "C3", but the other 13 cells below "C3" remain blank.
Range("D2").Select
ActiveCell.Cut Range(ActiveCell.Offset(1, -1), ActiveCell.Offset(14, -1))
What am I missing? Thanks
Range("D2").Select
ActiveCell.Cut Range(ActiveCell.Offset(1, -1), ActiveCell.Offset(14, -1))
What am I missing? Thanks