this is your worksheet
_____ Workbook: Book1.xlsm ( Using Excel 2007 32 bit )
Worksheet: Sheet1
Row\Col A B C D E F 1 2 3 5 2 4
This is your macro, as given by you in your uploaded file. It is incorrect. It will not work.
Code:Sub add() Range("C8").Value = Range("B3").Value + Range("E2").Value End Sub
This next macro below works fine for me. This is the correct macro for your worksheet
Code:Sub add() Range("C8").Value = Range("B3").Value + Range("E3").Value End Sub




Reply With Quote
Bookmarks