kingleviathan
Board Regular
- Joined
- Aug 23, 2010
- Messages
- 57
Hi Guys
I have a spreadsheet that has a range that is linked to sharepoint database.
i want to create a macro that does finds the last row in this linked range.
How do I do this?
Conventional last row search doesnt seem to work.
Any ideas
I have a spreadsheet that has a range that is linked to sharepoint database.
i want to create a macro that does finds the last row in this linked range.
How do I do this?
Conventional last row search doesnt seem to work.
Code:
LastRow = .Cells(Rows.Count, "A").End(xlUp).Row 'find last row
Sheets("1").Range("W2").AutoFill Destination:=.Range("W2:W" & LastRow3056LCSLinked) _
, Type:=xlFillDefault 'Autofil column W2 which is outside the linked range to the length of the linked range
Any ideas