Forum Discussion
How to get first value from multiple value LOOKUPVALUE function
- 4 years ago
Okay, NickolajJessen, with your help (and similar threads on this community), I have this solution:
LOOKUPALT = CALCULATE(FIRSTNONBLANK(Table1[Value2], TRUE()), FILTER(Table1, Table1[ID] = Table2[ID]))
NickolajJessen This is looking great!
In the FIRSTNONBLANK function where we explicitly specify 'Table'[ID] = "0445" can we instead reference a column value? i.e., 'Table'[ID] = 'Table2'[ID]
Essentially, I'm trying to merge data from multiple tables and I'm using the ID that exists in both tables to fetch Value2 from Table1 and save it in a new column in Table2.
Okay, NickolajJessen, with your help (and similar threads on this community), I have this solution:
- JiriRak3 years agoHelper I
This is great, I can´t express how much the formula helped me!
- charleshale2 years agoContinued Contributor
Love this. Thank you. Question: can you think of any lower processor intensive ways to do this for big tables? Maybe innerjoin somehow?
- paulostorrer2 years agoRegular Visitor
Thanks, only difference I used ALLEXCEPT instead of FILTER.