I've tried to use the OpenText
method described in this post on a file which looks like this:
Ref,AccNum,SCode,RollNum
999,15697668,404040,4921817045040610
When I run this code the fourth column still appears in scientific notation:
Workbooks.OpenText FileName:="H:\DataFile.csv", Origin:=3, StartRow:=1, _
DataType:=1, TextQualifier:=1, ConsecutiveDelimiter:=False, _
Tab:=False, Semicolon:=False, Comma:=True, Space:=False, _
Other:=False, FieldInfo:=Array(Array(4, 2)), _
TrailingMinusNumbers:=True
Do you know what I'm doing wrong?