• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Excel Experts - Need Help

quakeworld

Senior member
Hi.

I'm trying to come up with a simpler formula for doing a vlookup across multiple worksheets. The one I found was this:

=IF(ISNA(VLOOKUP(A2,[Sheet2]Sheet1!$A:$H,2,0)),IF(ISNA(VLOOKUP(A2,[Sheet2]Sheet1!$A:$H,2,0)),VLOOKUP(A2,[Sheet2]Sheet1!$A:$H,2,0)),VLOOKUP(A2,[Sheet2]Sheet1!$A:$H,2,0))



Is there a more streamlined way of doing this?

 
There probably is an easier way, but without seeing your worksheets it is hard to know. A couple of things:

1) If you are using Excel 2007, there is a new IfError function that would likely simplify things. You could get rid of the ISNA and the one of the VLookups.
2) Sometimes using Index with Match can be simpler, but usually not. In any case, you might look at those functions.
 
Back
Top