G Guest Sep 10, 2007 #1 How do I make a macro which will input a number into a cell without deleting the numbers that are already there?
How do I make a macro which will input a number into a cell without deleting the numbers that are already there?
G Guest Sep 10, 2007 #2 Maybe:- Sub stanceabuse() Range("A1").Value = Range("A1").Value & "," & Range("B1").Value End Sub Mike
Maybe:- Sub stanceabuse() Range("A1").Value = Range("A1").Value & "," & Range("B1").Value End Sub Mike