Forum Discussion
Calculated Measure using result based on another column
- 4 years ago
Hi jimmymartin ,
According to your description, in my understanding, there're two tables in your sample,
Team table:
Opposition table:
Then create a measure to extrat the tackles of the opposition team, if this is the case, here's my solution, use the lookupvalue-function to create a measure.
Opposition Tackles = LOOKUPVALUE ( Opposition[Tackles], 'Opposition'[Oppositon], MAX ( 'Team'[Team] ) )Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi jimmymartin ,
According to your description, in my understanding, there're two tables in your sample,
Team table:
Opposition table:
Then create a measure to extrat the tackles of the opposition team, if this is the case, here's my solution, use the lookupvalue-function to create a measure.
Opposition Tackles =
LOOKUPVALUE (
Opposition[Tackles],
'Opposition'[Oppositon], MAX ( 'Team'[Team] )
)
Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.