# 列を追加する

<details><summary>DATAGRID_ADDCOLUMN関数</summary>

``` sas
DATAGRID_ADDCOLUMN(dataGrid, columnName, columnType);
```

- columnTypeに想定外の値が入っている場合、列の追加は行われない。
- 使える型名は以下。
  - boolean, bool, double, decimal, integer, int, long, string

<https://go.documentation.sas.com/doc/jp/edmcdc/v_056/edmdatagrids/n1djgke34f9wdhn15rsisdozptej.htm>
</details>