Sorry, here it is
Sub ImportFile()
'
' ImportFile Macro
'
'
Sheets("Keyops Data Dump").Select
Range("A1").Select
' With ActiveSheet.QueryTables.Add(Connection:= _
' "TEXT;S:\GENERAL\Tioga FMS Revenue\output.csv", Destination:=Range("$A$1"))
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;C:\Danny Schall\Revenue\output.csv", Destination:=Range("$A$1"))
.Name = "output"
.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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, _
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
Sheets("Keyops Data Dump").Select
Range("A1").Select
End Sub