Dim sFolder As String
Dim fd As FileDialog
Dim booResult As Boolean
Set fd = Application.FileDialog(msoFileDialogFolderPicker)
fd.AllowMultiSelect = False
fd.title = "Select folder"
While booResult = False
If fd.Show = True Then
'folder path was selected
booResult = True
sFolder = fd.SelectedItems(1)
DoCmd.OutputTo acReport, "DAW Sheet - Comm Approve", acFormatPDF, _
sFolder & "\DAW Sheet - Comm Approve - Registration - " & Forms![CS Raised - Mail]![RegCBO] & ".pdf"
End If
Wend