=IFERROR(VLOOKUP( A3,// value to search KYC!I:O, // range to search 7, // range index to fetch matching value from FALSE //already sorted or not),"" // value to fill if nothing is found)
```
=IFERROR(
VLOOKUP(
A3,// value to search
KYC!I:O, // range to search
7, // range index to fetch matching value from
FALSE //already sorted or not
),
"" // value to fill if nothing is found
)
```