Pasar Txt a Excel con distinto formato de separador de miles
Que me funciona a la perfección el problema es que los archivos txt dependiendo del pc que se descargue llegan con la diferencia de separador de miles
Es decir que ejemplo algunos precios son 1.990 y el otro txt es 1,990 necesito que la macro convierta el, a punto y si es en punto lo deje tal cual adjunto macro y txt de ejemplo y como debe quedar
comparto enlace : https://drive.google.com/open?id=1twBvDpPYBEdRQuyFzvsotJWhk16VAxDO
Sub TRERSTOCK()
Application.ScreenUpdating = False
MsgBox "INGRESE STOCK TXT"
Sheets("ANALISIS").Select
Dim NombreArchivo As String
NombreArchivo = Application.GetOpenFilename()
Application.CutCopyMode = False
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;" & NombreArchivo, Destination:=Range( _
"$Q$7"))
.Name = "STOCK 611"
.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 = 14
.TextFileParseType = xlFixedWidth
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1)
.TextFileFixedColumnWidths = Array(23, 20, 32, 32, 32, 34, 8, 14, 14, 10)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
End Sub