Boas..
Deparei-me com um problema para transferir tabela do access para uma folha de excel.
O código que estou a usar é o seguinte ...
'######
Dim strPathFile As String, strFile As String, strPath As String
Dim strTable As String
Dim blnHasFieldNames As Boolean
blnHasFieldNames = False
strPath = "E:" ' drive onde se situa o seu documento excel
strTable = "Alarmes" 'nome da tabela no seu banco
strFile = Dir(strPath & "AlarmesDSDAT1.xls")
Do While Len(strFile) > 0
strPathFile = strPath & strFile
DoCmd.TransferSpreadsheet acExport, 8, _ strTable, strPathFile, blnHasFieldNames
strFile = Dir()
Loop
'######
Alguém sabe onde está incorrecto?
Obrigado ajuda
Cumprs
Deparei-me com um problema para transferir tabela do access para uma folha de excel.
O código que estou a usar é o seguinte ...
'######
Dim strPathFile As String, strFile As String, strPath As String
Dim strTable As String
Dim blnHasFieldNames As Boolean
blnHasFieldNames = False
strPath = "E:" ' drive onde se situa o seu documento excel
strTable = "Alarmes" 'nome da tabela no seu banco
strFile = Dir(strPath & "AlarmesDSDAT1.xls")
Do While Len(strFile) > 0
strPathFile = strPath & strFile
DoCmd.TransferSpreadsheet acExport, 8, _ strTable, strPathFile, blnHasFieldNames
strFile = Dir()
Loop
'######
Alguém sabe onde está incorrecto?
Obrigado ajuda
Cumprs