Skip to main content
Tags can be referenced or searched in the workbook’s field browser within fields or drill_fields with the syntax tag:tag_name.

Syntax

<dimension_name>:
  tags: [<tag_1>, <tag_2>, ...]

Properties

dimension_name
object
The name of the dimension. Dimension names must:
  • Be unique within the view
  • Start with a letter
  • Contain only alphanumeric characters and underscores

Examples

PII tags
full_name:
  sql: CONCAT(${first_name}, ' ' ${last_name})
  tags: [pii, secure]
Finance tags
profit:
  sql: ${sales} - ${cost}
  tags: [finance, secure]