Creates and updates table range based on the results of a SQL Query.

XL3SqlArea( RunQuery, SendUpdates, Connection, OutputRange, Sql, Parameters, UpdateTableSql, PostUpdateSql, PostUpdateParameters, FormulaBasedColumns, OutputTotalRows, StartRow)

ParameterDescription
RunQueryA cell reference that contains TRUE when the SQL Statement should be run. After execution the cell reference will be set to FALSE or an error message if an error has occurred. This cell is normally controlled with an XL3Link() formula, which can set the cell to TRUE when the user clicks on it.
SendUpdatesA cell reference that contains TRUE when the database should be updated. After execution, it'll be automatically reset to FALSE or an error message if an error ocurred. This cell is normally controlled with an XL3Link() formula, which can set the cell to TRUE when the user clicks on it.
ConnectionThe connection to use to connect to the database. This can either be the Connection ID of a workbook's relational connection or a connection string.
OutputRangeA cell containing the results of the SQL query.
SqlThe SQL statement to run.
ParametersIf the SQL statement includes "?" for each parameter, you can pass a range of cells that contain the parameters to pass. The order of the cells needs to match the order they appear in the SQL statement.
UpdateTableSQLIf the SQL statement to run contains several tables or a stored procedure, you can give the name of the table to update here.
PostUpdateSQLAn SQL statement that is run following the update of the data and again once the data has been re-retrieved in the workbook.
PostUpdateParametersAny parameters needed for the PostUpdateSQL
FormulaBasedColumnsPass a set of ranges that include the names of any columns that won't get overridden when loading the workbook. This allows a column to contain an Excel calculation and the value will be calculated and stored in the column when the table is saved.
OutputTotalRowsAn Excel range to output the total number of rows retrieved by the query. It allows a pager to be used to page through the results.
StartRowThe row number to start displaying the data from. It allows a pager to be used to page through the results.

XL3SqlArea(B3,,1,B4,A1)

When B3 is set to TRUE using an XL3Link, the SQL statement in A1 is run and the result of the query is outputted to the cell B4. After completion, B3 will be reset to FALSE, ready for the next update by an XL3Link.