To find the last column row in a column use this code:
With ActiveSheet
lngLastRow = .Range("A65536").End(xlUp).Row
End With
you can then set a variable to hold the value at range("A" & lngLastRow),
then repeat this for column E etc.
"Darin Kramer" wrote in message
...
Hi Guys,
Im trying to find the last row of data in column a, then go across to
column e and sum whats in that column...
Any ideas...???
Thanks
D
*** Sent via Developersdex http://www.developersdex.com ***