Hi,
I have two works books, a master and a summary. In some of the cells in the summary sheet i need to value to be the sum of two cells in the master book. I'm using the below in my code but would like to modify it so that 5 to the right of the activecell is the sum of cells c14:15 in the master.
Below is the code i currectly use when i dont have to sum
Thanks in advance
Blunder
I have two works books, a master and a summary. In some of the cells in the summary sheet i need to value to be the sum of two cells in the master book. I'm using the below in my code but would like to modify it so that 5 to the right of the activecell is the sum of cells c14:15 in the master.
Below is the code i currectly use when i dont have to sum
Code:
ActiveCell.Offset(0, 4).Value = wb.Sheets("Summary").Range("f30").Value
Thanks in advance
Blunder