- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Drillthrough Interesting Challange
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for the reply,
But, what is Table['ID']?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
That's intended to be the column you display in the table / matrix visuals.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-20-2024 09:44 AM | |||
02-10-2025 03:58 AM | |||
08-14-2024 09:31 PM | |||
07-17-2024 10:46 AM | |||
10-12-2024 01:24 AM |
User | Count |
---|---|
122 | |
105 | |
85 | |
52 | |
46 |