kelly mort
Well-known Member
- Joined
- Apr 10, 2017
- Messages
- 2,169
- Office Version
- 2016
- Platform
- Windows
I want to add all data from D3 down to last used cell then go down 1 and place that result there. Can someone fix that for me?
Is this what you wantCode:Sub MySum() Range("D" & Rows.Count).End(xlUp).Offset(1).FormulaR1C1 = "=sum(r1c:r[-1]c)" End Sub
=sum(r3c:r[-1]c)