Is there a way to loop back for another filename on vbNo using this.
If Dir(SaveFileName) = "" Then 'do nothing
Else
resp = MsgBox(prompt:="This file already exists -- Overwrite Existing File?", Buttons:=vbYesNo)
If resp = vbNo Then
'Loop ?
exit function
end if
end if
If Dir(SaveFileName) = "" Then 'do nothing
Else
resp = MsgBox(prompt:="This file already exists -- Overwrite Existing File?", Buttons:=vbYesNo)
If resp = vbNo Then
'Loop ?
exit function
end if
end if