Jason, try this.
Sub YourMacro()
'Add this line
Call LogUse(Range("b1:b9"))
End Sub
Sub LogUse(rRange As Range)
Application.ScreenUpdating = False
Sheet1.Activate
rRange.Copy
Workbooks.Open ("C:\Temp\surveillance.xls")
Application.Range("A1").Select
Do Until ActiveCell.Value = vbNullString
ActiveCell.Offset(1, 0).Select
Loop
ActiveSheet.Paste
Application.CutCopyMode = False
Application.ActiveWorkbook.Close True
Application.Range("A1").Select
Application.ScreenUpdating = True
End Sub
Jerid
Works great, thanks a million.
'Add this line Call LogUse(Range("b1:b9"))
Once again you have solved my problem. I just went to Amazon.com and purchased all the books listed as favorites on this web site. With any luck I won't be bothering ya'll now. (or as much anyway.....)
Thanks again. Jason D.
Also, thanks for the quick response.
'Add this line Call LogUse(Range("b1:b9")) : End Sub :