Forum Discussion
anupambit1797
May 14, 2025Steel 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))
anupambit1797
May 14, 2025Steel Contributor
Hi HansVogelaar , Sorry I wasn't clear earlier, I meant like this:-
So, in Column B(say) populate the time( blue) from the sheet2, which is just after the one in Column A in sheet-1
HansVogelaar
May 14, 2025MVP
Does this do what you want?
=LET(t, IFERROR(LOOKUP(A2, '2'!A:A), ""), IF(COUNTIF(B$1:B1, t), "", t))
- anupambit1797May 14, 2025Steel Contributor
Let me give one more sample, So the
is just after22:50:56.637
and before22:50:56.645
so, I keep it after 22:50:56.645, in column B, and so on..22:50:56.707 - HansVogelaarMay 14, 2025MVP
No: .637 is BEFORE .645, not AFTER!
- anupambit1797May 14, 2025Steel Contributor
So , Sorry, seems I am day sleeping :( .. I corrected the 1st sample( 2nd sample shared was correct), so this is what I needed