Bom dia!!
Eu não consigo baixa seu arquivo no meu trabalho.
Tente Gravar uma Macro usando a opção Obter dados externos.
O código abaixo é apenas um exemplo fictício.
Sub ObterDadosExternos()
'
' ObterDadosExternos Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;C:UsersAleVBADownloadsdd.txt", Destination:=Range( _
"$A$1"))
.Name = "dd"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 850
.TextFileStartRow = 1
.TextFileParseType = xlFixedWidth
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1)
.TextFileFixedColumnWidths = Array(2, 24, 2, 5)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
End Sub
Att
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 10/06/2016 6:02 am