Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.13 KB

Excel.ODBCConnection.CommandType.md

File metadata and controls

50 lines (31 loc) · 1.13 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ODBCConnection.CommandType property (Excel)
vbaxl10.chm796076
vbaxl10.chm796076
Excel.ODBCConnection.CommandType
5bfffa11-94d1-43fa-1da5-83f341c0a3cd
05/01/2019
medium

ODBCConnection.CommandType property (Excel)

Returns or sets one of the XlCmdType constants. Read/write XlCmdType.

Syntax

expression.CommandType

expression A variable that represents an ODBCConnection object.

Remarks

The constant that is returned or set describes the value of the CommandText property. The default value is xlCmdSQL.

Example

This example sets the command string for the first query table's ODBC data source. The command string is an SQL statement.

Set qtQtrResults = _ 
 Workbooks(1).Worksheets(1).QueryTables(1) 
With qtQtrResults 
 .CommandType = xlCmdSQL 
 .CommandText = _ 
 "Select ProductID From Products Where ProductID < 10" 
 .Refresh 
End With 

[!includeSupport and feedback]