sum by coding

K

kaja48380

hi
i like to add the two cells by using macro and to display the result
in other cell
 
J

JE McGimpsey

One way:

Public Sub Add2Cells()
Range("C1").Value = Range("A1").Value + Range("B1").Value
End Sub
 
Top