Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi guys,
I created a Report with a measure that returns different strings e.g.
1-2-3
2-4-1
I want to add a measure2 to that report that delivers me more information related to that strings.
Report:
Measure1 | Measure2
1-2-3 | Test123
2-4-1 | Test241
The information are written in a table
Table1:
Coordinates |Information
1-2-3 | Test123
2-4-1 | Test241
I could do it manually with a Switch like below, but I have more than 64 coordinates with different information.
How can I combine switch with a table for values and results?
Thanks
BR
Chris
Solved! Go to Solution.
@Anonymous
Not sure about your existing data model.
Try this
Measure2 =
VAR m1 = [Measure1]
VAR result =
CALCULATE (
SELECTEDVALUE ( 'Table1'[Information] ),
'Table1'[Coordinates] = m1
)
RETURN
result
If this is not working then please copy your sample tables and measures here.
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
@Anonymous
Not sure about your existing data model.
Try this
Measure2 =
VAR m1 = [Measure1]
VAR result =
CALCULATE (
SELECTEDVALUE ( 'Table1'[Information] ),
'Table1'[Coordinates] = m1
)
RETURN
result
If this is not working then please copy your sample tables and measures here.
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
70 | |
44 | |
38 | |
29 |
User | Count |
---|---|
156 | |
92 | |
61 | |
44 | |
42 |