How to edit fields and values
Learn how to edit field names and values of various field types.
How to edit field names
- Go to your Collection (i.e., Collection view).
- Click the three dots by any field name and choose Edit.
- Edit the field name and choose Save.

How to edit values
Editing values from Extraction view
You can edit values of the following field types from Extraction view:
- Single value fields (text, number, date)
- Table fields
- Checkbox fields
- Manual field values
- Open any file and enter Extraction view.
- Either directly click the value you want to edit or hover over the value and click the pencil icon.
- You can choose to either adjust the blue bounding box or manually typing in a correct value into the value field.
- After you’re done editing, click Confirm value and blue box.
- If you’re editing values in a table, make sure you hit Confirm entire row after editing to trigger Impira to reprocess predictions.

Editing values from Collection view
Values of the following field types can be edited from either Extraction view or Collection view:
- Manual fields
- Checkbox fields (both manually added and extracted checkboxes)
- Go to your Collection and find your field.
- If it’s a text field, double-click into the cell, edit the text, then either press Enter on your keyboard or click your mouse anywhere else on the screen.
- If it's a checkbox field, simply click the checkbox to check or uncheck it.

Editing Dataset values
Edit values in your Dataset the same exact way as you would edit manual field values.
- Go to your Dataset (left sidebar).
- Double-click any value, edit the text, and hit Enter on your keyboard.

Editing custom field values
While you can’t edit custom field values directly, you can edit the expressions that return those values.
- Find the custom field in Collection view and click the three dots by the field name.
- Select Edit, make any changes to your expression, then choose Save.

Example
Let’s say you have a concatenated field called Full address with values that includes the fields:
- Street
- City
- State
- Zip code
The expression is for that custom field is:
concat(Street, " ", City, " ", State," ", `Zip code`)

But now, you want to edit the values for Full address so they no longer include the zip code.
- Find the custom field in Collection view and click the three dots by the field name.
- Enter the expression:
concat(Street, " ", City, " ", State)
This edits the value of your custom field, Full address, to no longer include the zip code.