I have the following section of code from a SUB that needs to know the last row with data in it.
.
Dim RwCount as long, RRng as range
.
.
With Sheets("annualsummary")
Set RRng = .Range("D:D")
RwCount = RRng.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
.
.
When...