Fill Missing

Fill null values

What It Does

Fill Missing replaces null/empty values in a column. Use a literal value, or fill forward (use previous row's value) or backward (use next row's value).

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Fill Missing". It's in the Data group.

Configuration

FieldTypeRequiredDescription
ColumnColumn selectYesThe column with missing values
MethodSelectYesliteral (set value), forward (previous row), backward (next row)
ValueTextFor literalThe value to fill with
SQL generated under the hood
SELECT *, COALESCE(status, 'unknown') AS status FROM data
Try this operation →

Related Operations

  • Join - Join with another file/table
  • Unnest - Explode delimited column into rows
  • JSON Extract - Extract data in JSON format into columns