Forum Discussion
anupambit1797
May 14, 2025Iron Contributor
Vlookup or any better function
Dear Experts, Greetings! I have a data like below:- Sheet 1 & 2, and have to fetch the data from 2 -> 1. If , I use Vlookup with True(approximate match) then it populates ...
- May 14, 2025
Does this do what you want?
=LET(t, IFERROR(LOOKUP(A2, '2'!A:A), ""), IF(COUNTIF(B$1:B1, t), "", t))
HansVogelaar
May 14, 2025MVP
That would be
=IF(COUNTIF(B$1:B1, IFERROR(LOOKUP(A2, '2'!A:A), "")), "", IFERROR(LOOKUP(A2, '2'!A:A), ""))