Sub PROG_05565()
'
' PROG_05565 Macro
'
'
Range("A13").Select
Application.CutCopyMode = False
With ActiveSheet.QueryTables.Add(Connection:="TEXT;C:\abq\PROG_05565.TXT", _
Destination:=Range("$A$13"))
.Name = "PROG_5565"
.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 = xlFixedWidth
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(2, 1, 1, 1, 1, 1, 1)
.TextFileFixedColumnWidths = Array(36, 8, 9, 11, 9, 17)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
Range("F:F,E:E,C:C").Select
Range("C1").Activate
Selection.NumberFormat = "$#,##0.00_);[Red]($#,##0.00)"
Columns("D:D").Select
Selection.NumberFormat = "m/d/yyyy"
Columns("A:G").Select
Range("G1").Activate
Columns("A:G").EntireColumn.AutoFit
Range("A12").Select
End Sub