Skip to main content
Users need the Admin role to create and edit filters. Analysts can use existing filters but cannot modify them.
Prominent filters appear in the top toolbar and apply to all tiles in your Doc at once. They let viewers slice data by custom dimensions like region, industry, product, etc.
Prominent filters in toolbar

Creating prominent filters

You can add prominent filters in two ways:

Using Fi

Ask Fi to add filters to your Doc:
  • “Add a prominent filter for industry”
  • “Add a filter for region to the toolbar”
  • “Create filters for CRM source and stage name”
Fi adds the appropriate YAML configuration automatically.

Manually via YAML

  1. Click the ⋯ menu in the top toolbar
  2. Select View YAML
  3. Add a filters section after metadata and before datasets:
version: 1
schemaVersion: "2025-01"
kind: dashboard

metadata:
  name: "Your Dashboard Name"
  description: "Your dashboard description"

# Filters appear between metadata and datasets
filters:
  - id: region_filter          # Unique identifier
    label: Region              # Display name in toolbar
    target:
      dimension: orders.region # Format: cube_name.dimension_name
    operator: equals           # Options: equals, notEquals, contains, notContains
    display: prominent         # Shows filter in toolbar (remove to hide)
    values:                    # Optional: preset values
      - North America
      - Europe
      - Asia Pacific

  - id: product_filter
    label: Product
    target:
      dimension: orders.product_name
    operator: equals
    display: prominent
    values:
      - Pro Plan
      - Enterprise Plan

datasets:
  my_dataset:
    engine: cube
    ...
Each filter requires:
PropertyDescriptionExample
idUnique identifier for the filterregion_filter
labelDisplay name shown in the toolbarRegion
target.dimensionThe cube and dimension to filterorders.region
operatorFilter operationequals
displaySet to prominent to show in toolbarprominent
values(Optional) Preset values for the filter["North America", "Europe"]

Using prominent filters

  1. Click a filter in the toolbar (e.g., “Industry”, “Region”, “Source”)
  2. Select one or more values from the dropdown
  3. Click Apply to see your filtered data

Local vs. saved filters

When you apply a filter, you have two options:
ActionWho sees itPersistenceUse case
ApplyOnly youTemporary (resets on page reload)Exploring data on your own
Save for everyoneAll usersPermanent (becomes the default view)Setting the default filter state for the Doc
To save filters for everyone, click the dropdown arrow next to the Apply button and select Save for everyone.
Local vs saved filters
If you reload the page after using Apply, the filters revert to the last “saved for everyone” state. To make your selections permanent, click Save for everyone.
To reset filters and show all data, click Reset.