alirulez

New Member
Joined
Jul 4, 2015
Messages
35
Hi guys

Id be grateful if you can help. Im getting a value error on this formula and I cant work out why this is the case

The Vlookup returns the value 421 - So Id like the formula to resolve to =ROUND('BlueCross Rates'!U421,3)

Code:
=ROUND("'BlueCross Rates'!U" & VLOOKUP(J3,Workings!J14:K37,2,FALSE),3)

The Vlookup returns the value 421 - So Id like the formula to resolve to

Code:
=ROUND('BlueCross Rates'!U421,3)

When I click evaluate, the last formula syntax before it fails to #Value is

Code:
ROUND("'BlueCross Rates'!U421,3)

Note the double quotation marks after the first bracket.

Any help would be much appreciated
Best
A
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Or avoiding the volatile INDIRECT function

=ROUND(INDEX('BlueCross Rates'!U:U,VLOOKUP(J3,Workings!J14:K37,2,FALSE)),3)

M.
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,280
Members
449,149
Latest member
mwdbActuary

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