VLOOKUP Column AA & AB

Joined
Jun 13, 2017
Messages
108
Hi, I have a lot of info on my file and everything was working perfectly for columns A to Z.
But when I got to looking up data from AA onward it'll come up as 0.

The formula I have is:
Code:
=IFERROR(VLOOKUP($B5,Review!$A$4:$Y$100,[COLOR=#ff0000]26[/COLOR],FALSE)*VLOOKUP($B5,Review!$A$4:$Y$100,[COLOR=#ff0000]27[/COLOR],FALSE),0)
Like I said when I was looking up Y and Z, 24 & 25 respectively everything is normal. Then when I move to the next set (AA and AB) the formula gives me 0 no matter what's in those cells.

Anyone got any idea where I'm going wrong?

Thank you in advance if you try to help!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
VLOOKUP's table_array must contain the range that you want to return. The reason it is returning 0 is because it is actually generating a #REF error when you try to return a column which is not present in the table_array, which is being caught by the IFERROR.

Try:

Code:
=IFERROR(VLOOKUP($B5,Review!$A$4:$[B][COLOR="#FF0000"]AB[/COLOR][/B]$100,26,FALSE)*VLOOKUP($B5,Review!$A$4:$[B][COLOR="#FF0000"]AB[/COLOR][/B]$100,27,FALSE),0)
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,242
Members
452,623
Latest member
russelllowellpercy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top