# SpreadsheetAddColumn

Adds columns to a spreadsheet object.

## Method Signature

```
SpreadsheetAddColumn(spreadsheetObj=[any], data=[any], column=[any], row=[any], insert=[any], datatype=[any])
```

### Arguments

| Argument         | Type      | Required | Description                                                                              | Default |
| ---------------- | --------- | -------- | ---------------------------------------------------------------------------------------- | ------- |
| `spreadsheetObj` | `ANY`     | `true`   | The spreadsheet object.                                                                  |         |
| `data`           | `ARRAY`   | `true`   | An array of data to add to the column.                                                   |         |
| `column`         | `NUMERIC` | `false`  | The column number where to insert the data (1-based). If not specified, adds to the end. |         |
| `row`            | `NUMERIC` | `false`  | The row number where to start inserting the data (1-based). Default is 1.                | 1       |
| `insert`         | `BOOLEAN` | `false`  | Whether to insert a new column or overwrite existing column. Default is false.           | false   |
| `datatype`       | `STRING`  | `false`  | The data type to apply to the cells (not implemented in this version).                   |         |

## Examples

Add a column to a spreadsheet:

```js
// Add a column with data
var spreadsheet = SpreadsheetNew();
SpreadsheetAddColumn( spreadsheet, "ID", [ 1, 2, 3 ] );
```

Add multiple columns:

```js
// Build spreadsheet column by column
var spreadsheet = SpreadsheetNew();
SpreadsheetAddColumn( spreadsheet, "Name", [ "John", "Jane", "Bob" ] );
SpreadsheetAddColumn( spreadsheet, "Age", [ 30, 28, 35 ] );
```

## Related

* [SpreadsheetDeleteColumn()](/boxlang-+-++/modules/bx-spreadsheet/built-in-functions/spreadsheetdeletecolumn.md) - Delete a column
* [SpreadsheetSetColumnWidth()](/boxlang-+-++/modules/bx-spreadsheet/built-in-functions/spreadsheetsetcolumnwidth.md) - Set column width
* [SpreadsheetAddRow()](/boxlang-+-++/modules/bx-spreadsheet/built-in-functions/spreadsheetaddrow.md) - Add a row
* [Column Operations Guide](https://github.com/ortus-boxlang/boxlang-docs/blob/v1.x/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/column-operations.md) - Working with columns


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boxlang.ortusbooks.com/boxlang-+-++/modules/bx-spreadsheet/built-in-functions/spreadsheetaddcolumn.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
