Bom dia a todos,
Desde já desejo um feliz natal a todos.
Preciso de ajuda em relação a criação de um código em vba.
Há alguma forma para quando eu carregar num botão em access, ele criasse uma pasta e guarda-se a tabela em excel nessa pasta com o nome de um campo?
já tenho algo mais ou menos, só não me cria a pasta e guarda lá os ficheiros.
Private Sub Command253_Click()
Dim strArquivo1 As String
Dim strArquivo As String
Dim strLocal As String
Dim strLocal1 As String
strArquivo = "Interno -" & Me!Text339 & ".pdf"
strArquivo1 = "Excel -" & Me!Text339 & ".xlsx"
strLocal = CurrentProject.Path & "\PDF\" & strArquivo
strLocal1 = CurrentProject.Path & "\PDF\" & strArquivo1
DoCmd.OutputTo acOutputTable, "Folha1", acFormatXLSX, strLocal1, False
DoCmd.Close acTable, "Folha1"
DoCmd.OutputTo acOutputReport, "interno1", acFormatPDF, strLocal, False
DoCmd.Close acReport, "interno1"
End Sub
agradeço...
Desde já desejo um feliz natal a todos.
Preciso de ajuda em relação a criação de um código em vba.
Há alguma forma para quando eu carregar num botão em access, ele criasse uma pasta e guarda-se a tabela em excel nessa pasta com o nome de um campo?
já tenho algo mais ou menos, só não me cria a pasta e guarda lá os ficheiros.
Private Sub Command253_Click()
Dim strArquivo1 As String
Dim strArquivo As String
Dim strLocal As String
Dim strLocal1 As String
strArquivo = "Interno -" & Me!Text339 & ".pdf"
strArquivo1 = "Excel -" & Me!Text339 & ".xlsx"
strLocal = CurrentProject.Path & "\PDF\" & strArquivo
strLocal1 = CurrentProject.Path & "\PDF\" & strArquivo1
DoCmd.OutputTo acOutputTable, "Folha1", acFormatXLSX, strLocal1, False
DoCmd.Close acTable, "Folha1"
DoCmd.OutputTo acOutputReport, "interno1", acFormatPDF, strLocal, False
DoCmd.Close acReport, "interno1"
End Sub
agradeço...