Hi all I'm doing the following and it works wonderfully.
With ActiveSheet.ListObjects.Add(SourceType:=0, Source:= _
"ODBC;DSN=BLAH;Description=BLAH;UID=BLAH;;APP=2007 Microsoft Office system;WSID=BLAH" _
, Destination:=Range(c.Offset(0, 1).Address)).QueryTable
.CommandText = "SQL HERE BLAH BLAH"
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlOverwriteCells
.SavePassword = True
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.PreserveColumnInfo = True
.ListObject.DisplayName = "FetchTable"
.Refresh BackgroundQuery:=False
End With
The only problem is I don't want it to have the headers. My first thought was to go:
ActiveSheet.ListObjects("FetchTable").ShowHeaders = False
After the data is fetched and added, however this doesnt shift the data up and simply blanks out the headers.
Can you please help me so only the data rows are shown and no row is taken up for header space.
Thanks!!
Bookmarks