I have the following measures.
FlagCount, AvgVal, Decile
And I want these measures in like a table format in row level.
Something like this.
ColumnName | Measures |
Column1 | FlagCount |
Column2 | AvgVal |
Column3 | Decile |
The above table will be used in a bar chart and the dashboard has slicers. how can I achieve this?
Thank you!
Solved! Go to Solution.
Hi @jothi_prakash_a,
you can create a separate table, with the measure names on the rows.
Create a new measure like this:
MainMeasure =
VAR _measure =
CALCULATE ( SELECTEDVALUE ( MeasuresTable[Measures] ) )
RETURN
SWITCH (
TRUE (),
_measure = "Measure1", [Measure1],
_measure = "Measure2", [Measure2],
_measure = "Measure3", [Measure3]
)
An example
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Hi @jothi_prakash_a,
you can create a separate table, with the measure names on the rows.
Create a new measure like this:
MainMeasure =
VAR _measure =
CALCULATE ( SELECTEDVALUE ( MeasuresTable[Measures] ) )
RETURN
SWITCH (
TRUE (),
_measure = "Measure1", [Measure1],
_measure = "Measure2", [Measure2],
_measure = "Measure3", [Measure3]
)
An example
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
190 | |
69 | |
67 | |
60 | |
55 |
User | Count |
---|---|
195 | |
103 | |
90 | |
81 | |
75 |