Opa tudo certo espero que sim...
Quanto a criar uma pasta nova a cada mês tente essa macro:
Sub CRIARPASTA()
Dim VAR As Object, NOVAPASTA
Set VAR = CreateObject("Scripting.FileSystemObject")
Dim CAMINHO As String
CAMINHO = "C:"
NOVAPASTA = CAMINHO & UCase(MonthName(Month(Date))) & "-" & Year(Date)
If Not VAR.FolderExists(NOVAPASTA) Then
VAR.CreateFolder (NOVAPASTA)
End If
End Sub
Se funcionar vai adaptando até chegar ao seu objetivo...
Visite meu blog:
programacaopassoapasso.wordpress.com
Postado : 16/11/2015 3:14 pm