Olá a todos, gravei uma Macro para importar dados de um .TXT, mas eu preciso que essa Macro importe esses dados do .TXT da mesma pasta que o arquivo .xlsm estiver.
É possível editar o caminho para importar o arquivo .txt na Macro para o mesmo caminho que o arquivo está, ou seja a mesma pasta? De forma que se eu colocar este .xlsm em outra pasta com outro arquivo com o nome Dados.txt ela importe também este arquivo.
Sub importarDados()
'
' importarDados Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;C:\Users\tanab\Documents\Arquivos txt\Wilson Silva_Incatep\Simulação Operação de Shiploader_2172023\Relatório_141625\Dados.txt" _
, Destination:=Range("$A$1"))
'.CommandType = 0
.Name = "Dados"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 65001
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = False
.TextFileSemicolonDelimiter = True
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
End Sub
Postado : 24/07/2023 3:39 pm