i'd rather it went directly from the inputbox but I'm not sure how to approach either!
Sub input()
Dim path$
path = InputBox("Please input path in the format 'C:blah*.xls'", Title:="Path Entry")
Worksheets(1).Range("a12").Value = path
Call getSheet
End Sub
sub getSheet()
Workbooks.Open "??what goes in here??"
Workbooks("??what goes in here").Sheets(1).Copy _
after:=Workbooks("totals.xls").Sheets(5)
end sub