Thread: sql
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
susie susie is offline
external usenet poster
 
Posts: 10
Default sql

With ThisWorkbook.Worksheets("Estimate").QueryTables.Ad d
(Connection:= _
"ODBC;DRIVER=SQL
Server;SERVER=servername;UID=yourloginid;APP=Micro soft®
Query;WSID=servername;DATABASE=yourdatabasename;Tr usted_Con
nection=Yes" _
, Destination:=ThisWorkbook.Worksheets
("Estimate").Range("c7"))
.CommandText = Array( _
"SELECT * FROM Quote")
.Name = "Can be any name"
.FieldNames = False
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlOverwriteCells
.SavePassword = True
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.PreserveColumnInfo = True
.Refresh BackgroundQuery:=False
End With
-----Original Message-----
How can I put an sql statment in excel VBA.
Any example will be appreciated.
Thanks
.