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
Hello Learners,
We have requirements wherein we have two measures, Measure A and Measure B, which fetches corresponding data after drilling through,
We have to develop Measure C on top of Measure A and Measure B, which would fetch entire data that fetched out by Measure A and Measure B, also we need additional flag in the drillthrough data indicating typical line row is from Measure A or Measure B.
Is this possible ?
Solved! Go to Solution.
You could create a measure like
MeasureC =
IF (
ISINSCOPE ( 'Table'[ID] ),
SWITCH (
TRUE,
NOT ISBLANK ( [Measure A] ), "A",
NOT ISBLANK ( [Measure B] ), "B"
)
)
as long as measures A and B are mutually exclusive
You could create a measure like
MeasureC =
IF (
ISINSCOPE ( 'Table'[ID] ),
SWITCH (
TRUE,
NOT ISBLANK ( [Measure A] ), "A",
NOT ISBLANK ( [Measure B] ), "B"
)
)
as long as measures A and B are mutually exclusive
Thank you for the reply,
But, what is Table['ID']?
That's intended to be the column you display in the table / matrix visuals.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
86 | |
70 | |
51 |
User | Count |
---|---|
206 | |
150 | |
97 | |
78 | |
69 |