I am encountering the following run-time error when lauching the code below from an Active X command button in Excel 2010, launching Word 2010. I have a spreadsheet which has the option to load a word doc which is a helpfile. This code was working fine, but will not now and I can't determine why. It fails on the 'open' line. I have checked the server and document path and they are still correct. Apprectiate any help on this one, Cheers V.
Rich (BB code):
sub launchhelpfile()
Set wordapp = CreateObject("word.Application")
wordapp.documents.Open "\\Porter\AMGRTREAT\Asset Management\Asset Management Plans\2011\Editing Master Asset Plans to refer to site specific.doc"
wordapp.Visible = True
Set wordapp = Nothing
End Sub