Forum Discussion
ajl_ahmed
Jul 12, 2023Iron Contributor
Need a function to do matching process and return the corresponding value
Hi
I have three lists; List A (name and Reason), List B (Name) and List C (Name). I need a function to match each name in List C with names of the list A and B and return the corresponding rason in List A if it is matched and blank if it is not matched.
- OliverScheurichGold Contributor
=IFNA(VLOOKUP(VLOOKUP(I4,$G$4:$G$8,1,FALSE),$E$4:$F$14,2,FALSE),"")
You can try this formula.