Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi folks,
is it possible to perform a one-to-many lookup with measure, not calculated column? When I work with calculated columns and tables it's so intuitive, but with measures I just miss the row context...
simple example:
I have two tables with one-to-many relationship. Now I want to create a table visual and display id with values for choosen category.
I can't use LOOKUPVALUE properly because I can't say object.id = lookup.object_id.
Any ideas?
Solved! Go to Solution.
HI @eniX
In that case
Measure = VAR Myresult = CONCATENATEX ( LookUp, LookUp[value], ", " ) RETURN IF ( ISBLANK ( Myresult ), "", myresult )
How are you man?
What are your expected results?
Try this MEASURE
Measure = CONCATENATEX ( LookUp, LookUp[value], ", " )
trying to get used to DAX 🙂
your measure is nearly what I try to achieve, but I need a left join there instead of inner join. By this I mean I need a full list of objects(id) no matter, if the measure is empty or not. so in your example i also need to see ids 3,5 and 6 with an empty mesure each.
HI @eniX
In that case
Measure = VAR Myresult = CONCATENATEX ( LookUp, LookUp[value], ", " ) RETURN IF ( ISBLANK ( Myresult ), "", myresult )
Perfect, thank you again 🙂
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
83 | |
82 | |
71 | |
49 |
User | Count |
---|---|
143 | |
129 | |
108 | |
63 | |
55 |