Test this one Veronica
Check the path and sheet name here before you run the macro
FilenameStr = "C:\My Documents\Cust Maint\RFQ to Admin\" & _
Sheets("Order").Range("B4") & ".pdf"
Sub RDB_PDF_ActiveSheet_Test()
Dim FilenameStr As String
If Dir(Environ("commonprogramfiles") & "\Microsoft Shared\OFFICE" _
& Format(Val(Application.Version), "00") & "\EXP_PDF.DLL") <> "" Then
FilenameStr = "C:\My Documents\Cust Maint\RFQ to Admin\" & _
Sheets("Order").Range("B4") & ".pdf"
Sheets("RFQ").ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:=FilenameStr, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=False
MsgBox "You can find the PDF file here : " & FilenameStr
Else
MsgBox "PDF add-in Not Installed"
End If
End Sub

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
On Jan 25, 4:08 pm, "Ron de Bruin" <rondebr...@kabelfoon.nl> wrote:
> Do you want to create the folder ?
>
[quoted text clipped - 13 lines]
>
> - Show quoted text -
Yes, I have already created the folder in My Documents>Cust Maint on
the C: drive.