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,
sorry if this problem was already solved here, i was trying to find it but none of the solutions i found helped (but i'm a beginner).
I have two tables:
i need to get the passing coefficients from the second table to the first one as a new column. Both group 1 and group 2 can be duplicate but the combinations of the groups are unique. The coefficients do not have to be unique. obviously i can't use LOOKUPVALUE and i'm kind of stuck here. Can anyone help me please?
Solved! Go to Solution.
Try this
coef = CALCULATE ( FIRSTNONBLANK ( Table2[Coef], 1 ), FILTER ( Table2, Table2[group1] = Table1[group1] && Table2[group2] = Table1[group2] ) )
Try this
coef = CALCULATE ( FIRSTNONBLANK ( Table2[Coef], 1 ), FILTER ( Table2, Table2[group1] = Table1[group1] && Table2[group2] = Table1[group2] ) )
It works well, but just wonder why the lookupvalue function dosen't work?
I had the same problem, thank so much
LookupValue should also work. Try this
coef = LOOKUPVALUE ( Table2[coef], Table2[group1], Table1[group1], Table2[group2], Table1[group2] )
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 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |