Thread
:
add cells
View Single Post
#
2
Posted to microsoft.public.excel.programming
Don Guillett[_2_]
external usenet poster
Posts: 1,522
add cells
Sub makeformula()
For i = 1 To 500
Cells(i, "d").Value = Cells(i, "e") + Cells(i, "f")
Next i
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Kristen" wrote in message
...
I have this to start
Sub Total()
Range("D1").Value = Range("E1").Value + Range("F1").Value
What do I have to add to this so it continues down 500 rows (D500 = E500
+D500)
Thanks in advance!
Reply With Quote
Don Guillett[_2_]
View Public Profile
Find all posts by Don Guillett[_2_]