# Turning on Advanced Mode Uploader

Advanced Mode is a configuration option for an Osmos Uploader that provides end users with a feature-rich experience that includes tools like [QuickFixes](https://docs.osmos.io/data-transformations/quickfixes), [Formulas](https://docs.osmos.io/data-transformations/formulas), and [SmartFill](https://docs.osmos.io/data-transformations/smartfill), which are available in [Osmos Pipelines](https://docs.osmos.io/pipelines). &#x20;

## Enabling Advanced Mode

To turn these on for your Uploader, just set the `disableAdvancedMode` flag to `false` in your Uploader configuration snippet.

```javascript
Osmos.configure({
  schema: {
    fields: [
      ...
    ]
  },
  token: 'your_token',
  ...
  // Set to false to show the advanced version of the uploader, with formulas, SmartFill, and QuickFixes.
  disableAdvancedMode: true
});
```

For additional settings, see [Optional Settings](https://docs.osmos.io/developer-docs/optional-uploader-settings).
