billandrew
Well-known Member
- Joined
- Mar 9, 2014
- Messages
- 743
Not sure why this code would not work. The result is False.
It does work if I remove the cells(1,14) portion - however I am looking to place the result in a cell rather than at the end of the range.
If you could How can I place the sum in a MsgBox
Thanks
Code:
Cells(1, 14) = Range("I" & Rows.Count).End(xlUp).Offset(1).FormulaR1C1 = "=sum(R2C:R[-1]C)"
It does work if I remove the cells(1,14) portion - however I am looking to place the result in a cell rather than at the end of the range.
If you could How can I place the sum in a MsgBox
Thanks