Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, i have the following data structure
Source | SessionsCatalogView | SessionsCartView |
---|---|---|
10 | 12 | |
5 | 4 |
I want to create Dimension, say [SessionViews], which would include SessionsCartView and SessionsCatalogView
Why?
I need to build a pie chart, where i can only use one dimension and one measure.
Unfortunately, I can't change the structure of the data.
Is that doable?
Thank you
Dimension
ValueList('SessionCartView', 'SessionCatalogView')
Expression
Pick(Match(ValueList('SessionCartView', 'SessionCatalogView'), 'SessionCartView', 'SessionCatalogView'),
Expression1, Expression2)
May be use ValueList function?
Dimension
ValueList('SessionCartView', 'SessionCatalogView')
Expression
Pick(Match(ValueList('SessionCartView', 'SessionCatalogView'), 'SessionCartView', 'SessionCatalogView'),
Expression1, Expression2)
you are right, thank you