Mega Code Archive

 
Categories / VisualBasic Script / Excel
 

Moving to Other Cells

Sub MyMacro()          ActiveCell.Value = "Top cell"          ActiveCell.Offset(1, 0) = "Bottom cell"      End Sub