Yes indeed, that's a huge omission of info... (nudge).
Try this instead:
Option Explicit
Sub PrintAssessments()
'Jerry Beaucaire 6/2/2010
'Print a changing list of assessment WORD documents
Dim RArng As Range
Dim RA As Range
Dim PATHS As Range
Dim RApath As String
Dim wrdApp As Object
Application.ScreenUpdating = False
Set wrdApp = CreateObject("Word.Application")
Set RArng = Sheets("Required RA").Columns("C:C").SpecialCells(xlCellTypeFormulas, 2)
Set PATHS = Sheets("RA Paths").Range("A3:B" & Rows.Count).SpecialCells(xlCellTypeConstants)
For Each RA In RArng
RApath = Application.WorksheetFunction.VLookup(RA, PATHS, 2, 0)
With wrdApp.documents.Open(RApath)
.PrintOut Background:=False, Copies:=1
.Close False
End With
Next RA
wrdApp.Quit False
Set wrdApp = Nothing
Set RArng = Nothing
Set PATHS = Nothing
Application.ScreenUpdating = True
End Sub
Bookmarks