Forum Discussion
bharka
8 years agoRegular Visitor
lookupvalue filtering 2 columns
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 pass...
- 8 years ago
Try this
coef = CALCULATE ( FIRSTNONBLANK ( Table2[Coef], 1 ), FILTER ( Table2, Table2[group1] = Table1[group1] && Table2[group2] = Table1[group2] ) )
Zubair_Muhammad
8 years agoCommunity Champion
Try this
coef =
CALCULATE (
FIRSTNONBLANK ( Table2[Coef], 1 ),
FILTER (
Table2,
Table2[group1] = Table1[group1]
&& Table2[group2] = Table1[group2]
)
)Jay_Lu
3 years agoNew Member
It works well, but just wonder why the lookupvalue function dosen't work?