gravei uma macro p importar dados de um bloco de notas.
Sub IMPORTAR_BLOCOS_DE_NOTAS_CAIXINHAS()
'
' IMPORTAR_BLOCOS_DE_NOTAS_CAIXINHAS Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;L:DENES2. RH10%10% 15.06 a 21.061 DIA.txt", Destination:=Range( _
"$A$1"))
.Name = "1 DIA"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 1252
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
ActiveWindow.SmallScroll Down:=42
End Sub
este o bloco original:
http://prntscr.com/7ke3s4
ocorre que alguns valores ficam deslocados na planilha:
http://prntscr.com/7ke45t
é possível corrigir no próprio código ou é a configuração do próprio bloco de notas que faz ficar assim?
Postado : 23/06/2015 9:47 am