Experimente algo assim...
Código: Selecionar todos ' Substitua o caminho d o nme do arquivo PDf de cacordo com seus dados:
pathFile = "c:\users\user\Documents\NOME_DO_ARQUIVO_PDF"
ext = ".pdf"
tmp = pathFile
Do While FileChecker(tmp, ext)
c = c + 1
tmp = pathFile & " (" & VBA.Format(c, "00") & ")"
Loop
ActiveSheet.ExportAsFixedFormat _
Type:=xlTypePDF, _
FileName:=tmp & ext, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=False
Abaixo a funcao que verifica se o arquivo com o mesmo nome ja existe:
Código: Selecionar todosFunction FileChecker(FileName, ext) As Boolean
Dim Fso As Object
Dim Temp As String
Set Fso = VBA.CreateObject("Scripting.FileSystemObject")
Temp = FileName & ext
If Fso.FileExists(Temp) Then FileChecker = True
End Function