Assume numbers in cells to add are to the left of destination cell. Select destination cell, and run this macro...
Sub AddCells()
ActiveCell.FormulaR1C1 = "=RC[-2]+RC[-1]"
Selection.Copy
Selection.PasteSpecial Paste:=xlValues
Application.CutCopyMode = False
End Sub
Alternatively :-
Range("C1").Value = Range("A1") + Range("B1")
Or :-
ActiveCell.Value = ActiveCell.Offset(0, -2) + ActiveCell.Offset(0, -1)
Thanks Celia, your suggestion is much better than mine. I have gotten many great pointers from you by reading this message board.
If I see a response from you, I make sure I read it, because I know it's going to be a good tip, and I'm going to learn something.
Thanks! :)