MARK858
MrExcel MVP
- Joined
- Nov 12, 2010
- Messages
- 16,813
- Office Version
- 365
- Platform
- Windows
- Mobile
Hi all,
I have the Vlookup formula below. Now it is working correctly but the question I have is this the most efficient way of doing this?
It is obviously performing 3 Vlookups to get the desired result (i.e. turning all errors and value 0 to "Not Set") and this gives me concerns over whether it the most efficient way of achieving it.
Unfortunately it does need to work with 2003.
Any pointers anyone can give would be much appreciated.
Formula
=IF(ISERROR(VLOOKUP(A2,Sheet3!A:M,9,0)),"Not Set",IF(VLOOKUP(A2,Sheet3!A:M,9,0)=0,"Not Set",VLOOKUP(A2,Sheet3!A:M,9,0)))
I have the Vlookup formula below. Now it is working correctly but the question I have is this the most efficient way of doing this?
It is obviously performing 3 Vlookups to get the desired result (i.e. turning all errors and value 0 to "Not Set") and this gives me concerns over whether it the most efficient way of achieving it.
Unfortunately it does need to work with 2003.
Any pointers anyone can give would be much appreciated.
Formula
=IF(ISERROR(VLOOKUP(A2,Sheet3!A:M,9,0)),"Not Set",IF(VLOOKUP(A2,Sheet3!A:M,9,0)=0,"Not Set",VLOOKUP(A2,Sheet3!A:M,9,0)))