March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
116 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |