Forum Discussion
Anonymous
6 years agoNot applicable
Switch, value and result from a column
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 rel...
- 6 years ago
Anonymous
Not sure about your existing data model.
Try this
Measure2 = VAR m1 = [Measure1] VAR result = CALCULATE ( SELECTEDVALUE ( 'Table1'[Information] ), 'Table1'[Coordinates] = m1 ) RETURN resultIf 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 ๐
nandukrishnavs
Community Champion
6 years agoAnonymous
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 ๐