I have a MutliDimensional Cube, it has a Dimension(Hierarchy) named "Scenario", within the Scenario dimension I have a "SA - Scenario" level which refers to a DimensionAttribute "Scenario ID", with the following configuration:
So for the Key Column, the "Scenario ID" column is referenced, for the display text "Description" is referenced. So if in the SSAS cube browser(or excel) if you filter to that dimension you will see MDX such as this:
SELECT
NON EMPTY { } ON COLUMNS
FROM (
SELECT ( { [Scenario].[SA - Scenario].[Scenario].&[164] } )...
But you will see:
I would like to accomplish the same thing in a tabular cube(generate the same MDX statement when the user selects a scenario), so I built another tabular cube with the same hierarchy(based on the same info) with a "Scenario" hierarchy:
But I don't see an option to configure a "Key" and "Name" for my hierarchy, just "Source" column:
So in MDX that looks like:
SELECT
NON EMPTY { } ON COLUMNS
FROM
(
SELECT ( { [Scenario].[SA - Scenario].[Scenario].&[2016 Budget] }
)
Is that even possible in tabular cubes, to have a hierarchy where the selection of it's element contains a single key column(rendered in MDX/DAX) and another visible to the user column used for display only?
I see some discussion about it here, but I don't see how you accomplish this with a perspective, how would that work? I though perspective we're all about changing visibility and don't directly affect record selection or display.