CreateSheet
Create a sheet.
Note: This procedure makes use of indexed parameters. These input parameters are denoted with a '#' character at the end of their names.
Indexed parameters facilitate providing multiple instances a single parameter as inputs for the procedure.
Suppose there is an input parameter named Param#. Input multiple instances of an indexed parameter like this:
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
Input
| Name | Type | Required | Description |
| SheetName | String | False | Name of the Sheet. |
| ColumnName# | String | False | Name of the column. |
| ColumnType# | String | False | Type of the column values. |
| PrimaryColumn# | String | False | Specifies if of a column is primary or not. |
Result Set Columns
| Name | Type | Description |
| Success | String | Whether or not the sheet was created. |