---
title: "fillMissing(columnNamed:with:)"
framework: createml
role: symbol
role_heading: Instance Method
path: "createml/mldatatable/fillmissing(columnnamed:with:)"
---

# fillMissing(columnNamed:with:)

Creates a modified copy of the table by filling in the missing values in the named column.

## Declaration

```swift
func fillMissing(columnNamed: String, with value: MLDataValue) -> MLDataTable
```

## Parameters

- `columnNamed`: The name of the column with missing values.
- `value`: An MLDataValue to put in place for every missing value in the column.

## Return Value

Return Value A new data table.
