I have a reference request sheet that will log Approvals. Once approved, Customer reference name is entered manually. I want to then look for that name across two sheets and when matched, pull in 3 fields of information - name, email, phone.
I started with this formula, which works - but only when searching in 1 of the 2 Reference Libraries (Enterprise only)
=(VLOOKUP([Customer Reference]@row, {Enterprise Reference Library Range 2}, 5, false))
I tried to add in the 2nd reference library using this formula, but it returns error: #UNPARSEABLE
=IF([Sales Team] = Enterprise, (VLOOKUP([Customer Reference]@row, {Enterprise Reference Library Range 2}, 5, true)), (VLOOKUP([Customer Reference]@row, {Provider Reference Library Range 1}, 6, TRUE))
Any help?