
Originally Posted by
nickm687
1) Instead of scrolling through every worksheet in the tWB workbook, i
only want to use one. ("Dashboard")
Delete
For Each tWS In tWB.Worksheets 'loop through each sheet
and replace with
Set tWS = tWB.Worksheets("Dashboard")
delete

Originally Posted by
nickm687
2) I want to predefine the range i want copied. (A8:Z14)
Delete
Set uRange = tWS.Range("A2", tWS.Cells(tWS.UsedRange.Row + tWS.UsedRange.Rows _
.Count - 1, tWS.UsedRange.Column + tWS.UsedRange.Columns.Count - 1)) 'set used range
and replace with
Set uRange = tWS.Range("A8:Z14")
Bookmarks