Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions sml-reference/dimension.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,13 @@ namespace Dimensions{
String description
String folder
Array~CalculatedMembers~ calculated_members
Boolean is_hidden
}
class CalculatedMembers{
String unique_name
String description
String format
Boolean is_hidden
String expression
Boolean use_input_metric_format
}
Expand Down Expand Up @@ -513,6 +515,18 @@ Defines the individual calculated members in the group.

A description of the calculation group.

## is_hidden

- **Type:** boolean
- **Required:** N

Determines whether the attribute is visible in BI tools.

Supported values:

- `false` (default)
- `true`

# Calculated Members Properties

## unique_name
Expand Down Expand Up @@ -542,6 +556,18 @@ Supported templates:

If you do not want to use a built-in template, you can define a custom expression using the `expression` property (see below).

## is_hidden

- **Type:** boolean
- **Required:** N

Determines whether the attribute is visible in BI tools.

Supported values:

- `false` (default)
- `true`

## expression

- **Type:** string
Expand Down
Loading