Forum Discussion
How can I match two columns in a table to pull from a corresponding 3rd column?
- Apr 17, 2020
Houston-Jack Replicated your table and used the new FILTER function to find the Resource based on the combination of Project and Solution. If your Excel version does not recognise it, a more traditional approach need to be taken.
Houston-Jack Replicated your table and used the new FILTER function to find the Resource based on the combination of Project and Solution. If your Excel version does not recognise it, a more traditional approach need to be taken.
- Houston-JackApr 20, 2020Copper Contributor
Thanks for the elegant solution, Riny_van_Eekelen, I was a bit hung up on the AND of the two logical expressions. Your solution also provided a means of finding all the related matches and not stopping on just the first result. I was able to use TEXTJOIN to assemble the results in a single cell. My final formula looked like this:
=TEXTJOIN(" ",TRUE,FILTER('Estimate Data'!$D:$D,('Estimate Data'!$I:$I=$B3)*('Estimate Data'!$K:$K=Sheet1!C$2),""))
- Riny_van_EekelenApr 20, 2020Platinum Contributor
Houston-Jack Very good! Glad I could help.