> ## Documentation Index
> Fetch the complete documentation index at: https://fuse-docs.swovo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk Editing

> How to use Fuse as a bulk editing tool.

The spreadsheet UI Fuse can be used to edit data in bulk. All of the functionality in Fuse outside of uploading and transforming CSV files is useful for bulk editing, including:

* Front-end Data Validations
* Back-end Data Validations
* Data Transformations
* Bulk Actions
* and more.

To use Fuse as a bulk editing tool, set the `records` property on your importer before launching it. This will force the importer to skip the CSV file upload process and allow the user to edit the records.

```javascript theme={null}
const options = {
  records: [
    { name: "Mike", email: "mike@email.com" },
    { name: "Sandra", email: "sandra@mail.com" },
  ],
};

const importer = new FuseImporter(apiToken, templateSlug, { ...options });

// add columns, validations, and transformations here

importer.show();
```

## Preview

<img src="https://mintcdn.com/flatirons/18QE1i72HLvymxXY/images/bulk-editing.png?fit=max&auto=format&n=18QE1i72HLvymxXY&q=85&s=e28e50b98e2a9114f3c30ea26a3518e4" alt="Bulk Editing" width="3012" height="1698" data-path="images/bulk-editing.png" />
