dualhcsniatpac
Board Regular
- Joined
- Feb 18, 2009
- Messages
- 126
Trying to make a cell add from 2 other variables. Column D will sum North and South values.
Is that the correct way to do it or is there a sum function I can use.
Sum(North, South)???
Code:
......
ActiveCell.Offset(0, 1) = North.Value
ActiveCell.Offset(0, 2) = South.Value
ActiveCell.Offset(0, 3) = (North.Value+South.Value)
......
Is that the correct way to do it or is there a sum function I can use.
Sum(North, South)???