É possível alterar o tipo de dados padrão de Geral para Texto, mas o VBA é necessário.
Esta macro importará um arquivo de texto para o Excel e também especificará o tipo de dados como TEXTO.
Sub Import()
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;C:\Test1.txt", Destination:=Range("$A$1") _
)
.Name = "Test1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 437
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = True
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(2, 2, 2)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
End Sub
Nota: Por favor, verifique a linha .TextFileColumnDataTypes = Array(2, 2, 2)
. Aqui 2 define o formato TEXT e os 3 ELEMENTS da matriz especificam 3 colunas. Você deve definir a matriz para ter tantos elementos quanto o número de colunas no seu arquivo de texto.