Hi
In the activecell I have the full address of the file to be printed out.
Can anybody see what would be wrong with this?
I get a runtime error 438
Please help
In the activecell I have the full address of the file to be printed out.
Can anybody see what would be wrong with this?
I get a runtime error 438
Code:
If Not Activecell = vbNullString Then
FName = Dir(Activecell)
If FName = vbNullString Then
MsgBox "Could not find: " & Activecell, vbCritical
Else
Application.PrintOut Filename:=Activecell
End If
End If
Please help