VLOOKUP Circular Reference

kayceekat77

New Member
Joined
Oct 3, 2011
Messages
1
Hello-<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>
<o:p></o:p>
I am trying to create a price list that can be used on a timesheet and invoice sheet that resides on additional tabs in my workbook.<o:p></o:p>
<o:p></o:p>
So far I have created a table that includes the list of services in the first column and the price for each service per hour in the second column.<o:p></o:p>
<o:p></o:p>
On my timesheet I have created a VLOOKUP that automatically pulls the price based on the service selected from a drop down list:<o:p></o:p>
<o:p></o:p>
For Example:<o:p></o:p>
<o:p></o:p>
QTY Service Drop Down List $Price<o:p></o:p>
<o:p></o:p>
The problem I am having now, is that I would like to enter the quantity of hours and have that multiply by the price for an extended price total, however since the price is actually a formula due to the VLOOKUP, it is creating a circular reference instead of adjusting the extended price... Is there perhaps another way to do this that I am not thinking of? I thought there might be a formula that would automatically convert formulas to values without doing it manually with paste special.<o:p></o:p>
<o:p></o:p>
Thanks so much in advance for any help!<o:p></o:p>
<o:p></o:p>
KayCee<o:p></o:p>
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try this formula :

=IF(ISBLANK(cell where hours entered),VLOOKUP(your look up),VLOOKUP(your look up again)*cell where hours entered)

e.g.

=IF(ISBLANK(H13),VLOOKUP(D13,range,2,FALSE),VLOOKUP(D13,range,2,FALSE)*H13)

If no hours are entered, then the base price will be visible. If a duration is entered, then the value updates.

Hope this helps?
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,334
Members
452,907
Latest member
Roland Deschain

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