Formula ? on Errror

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,125
Office Version
  1. 365
Platform
  1. Windows
Hi,

When I use this formula the window pops up. I think I a missing something where its looking for the other sheet called Rates Table. I even tried to use this 'Rates Table' but still same issue. Any help thanks

=IFERROR(VLOOKUP($A$6:$A$200,Rates Table!$A$1:$D$500,4,0),"")
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
When using sheet names with spaces, they must be enclosed in single quotes, i.e.
Code:
=IFERROR(VLOOKUP($A$6:$A$200,'Rates Table'!$A$1:$D$500,4,0),"")
But here is a little tip. You don't even need to know that when writing your formulas, if you just go to the sheet and select the range that way (instead of typing it manually).
 
Upvote 0
To refer to a range in the worksheet Rates Table precede the range with 'Rates Table'!

VLOOKUP is used to lookup a single value as the first argument not a range like $A$6:$A$200.
 
Upvote 0
Got it thank you yeah was just that space I missed ' Rates Table'
 
Upvote 0
VLOOKUP is used to lookup a single value as the first argument not a range like $A$6:$A$200.
Good catch. The other error stood out to me so much that I overlooked that.
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,876
Members
452,363
Latest member
merico17

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