Forum Discussion
ddalton
4 years agoResolver I
How to get first value from multiple value LOOKUPVALUE function
Is it possible to get just one value from a multi-value LOOKUPVALUE result? (i.e., is there another function that can handle this?) I have a table (Table1) that contains rows with non-unique ID v...
- 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
4 years agoSolution Sage
- ddalton4 years agoResolver I
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.
- ddalton4 years agoResolver I
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]))- JiriRak3 years agoHelper I
This is great, I can´t express how much the formula helped me!