...
[green]' Create new folder if necessary[/green]
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
On Error Resume Next
objFSO.CreateFolder _
"C:\SubFolder\" & Format(now(), "yyyy-mm") & "\"
On Error GoTo 0
Set objFSO = Nothing
...