Difference between revisions of "XL3RunSQL"
(→See Also) |
m (Text replacement - "XLCubed" to "FluenceXL") |
||
Line 20: | Line 20: | ||
|- | |- | ||
| {{Code|[TableSheet]}} | | {{Code|[TableSheet]}} | ||
− | | Optional - Worksheet name containing query table or | + | | Optional - Worksheet name containing query table or FluenceXL Table to refresh after the SQL has run |
|- | |- | ||
| {{Code|[Table]}} | | {{Code|[Table]}} | ||
− | | Optional - The name of the query table or | + | | Optional - The name of the query table or FluenceXL Table to refresh after the SQL has run |
|} | |} | ||
Line 30: | Line 30: | ||
{{Code|XL3RunSql(J3,CommentData!$G$1,L3)}} | {{Code|XL3RunSql(J3,CommentData!$G$1,L3)}} | ||
− | ''When J3 is set to TRUE (via an [[XL3Link]]) then the SQL statement in L3 is run using the connection string specified in CommentData!G1. After completion J3 will be reset to FALSE - ready for the next update by an XL3Link. Note that to use this on | + | ''When J3 is set to TRUE (via an [[XL3Link]]) then the SQL statement in L3 is run using the connection string specified in CommentData!G1. After completion J3 will be reset to FALSE - ready for the next update by an XL3Link. Note that to use this on FluenceXL Web Edition, the XL3Link should be of type 3 (HyperLink with submit changes on web).'' |
==See Also== | ==See Also== |
Latest revision as of 09:50, 4 July 2023
Allows a SQL Statement to be run when required (used in conjunction with XL3Link to trigger the execution)
Contents
[hide]Syntax
XL3RunSQL( ExcecuteSQL, Connection, SQLStatement, [TableSheet], [Table])
Parameters
Parameter | Description |
---|---|
ExecuteSQL | A 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 occurred. |
Connection | The connection to use to connect to the database. This can either be the Connection ID of a workbook relational connection or a connection string. |
SQLStatement | The SQL statement to run |
[TableSheet] | Optional - Worksheet name containing query table or FluenceXL Table to refresh after the SQL has run |
[Table] | Optional - The name of the query table or FluenceXL Table to refresh after the SQL has run |
Examples
XL3RunSql(J3,CommentData!$G$1,L3)
When J3 is set to TRUE (via an XL3Link) then the SQL statement in L3 is run using the connection string specified in CommentData!G1. After completion J3 will be reset to FALSE - ready for the next update by an XL3Link. Note that to use this on FluenceXL Web Edition, the XL3Link should be of type 3 (HyperLink with submit changes on web).