Okay, so right now I use this code to open the workbook.
Workbooks.Open ("Lorencz:Users:amykate:Desktop:Template.xlt")
I have some code before it and then more code after it. But at the end, I am wanting to go back to that open template to use it again.
Where would I put that "Dim wbTemp as Workbook" part?
Would it be like this? (your code is in bold)
Sub FTH()
Dim wbTemp as Workbook
Selection.Columns("A:BQ").Copy
Workbooks.Open ("Lorencz:Users:amykate:Desktop:WebconTemplate.xlt")
Sheets("FTH").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlValues
Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Set wbTemp = ActiveWorkbook
Sheets("FTH").Select
Range("A1").Select
Cells.Find(What:="STOP", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, _
MatchCase:=False).Activate
Range(ActiveCell, "BR2").Copy
Workbooks("2010_RunningSheet.xls").Worksheets("FTH").Cells _
(Rows.Count, "C").End(xlUp).Offset(1, -2).PasteSpecial xlPasteValues
End Sub
And also, what would the activate workbook code look like using that object?
Like this?
Workbooks("wbTemp").Activate
Bookmarks