Auto-update cells based on a cell drop-down list and a table

Castillb

New Member
Joined
May 3, 2013
Messages
12
Hi,

I have a drop down list in cell B2 that allows the user to select different deductible values (1,000, 2,000, etc...). Could somebody show me how to go about auto-populating Column E with the values that are in the table, based on the deductible amount that is selected from the drop down and the table number that is column D? Could this be done using a VLOOKUP or an IF Statement, or both? Thank you for time and help.

Column Column
D E

Table Ded
10.043
20.035
30.028

<tbody>
</tbody>

Table that is in the spreadsheet:

Deductible Discount Factors
Table:
Deduct.
Amount
1 2 3
1,0000.0430.0350.028
2,0000.0720.0590.049
3,0000.0940.0790.065
4,0000.1140.0950.079
5,0000.1310.1090.091
10,0000.1980.1650.137
15,0000.2460.2060.172
20,0000.2830.2380.201
25,0000.3130.2650.225
50,0000.4150.3610.313
75,0000.4760.4220.375
100,0000.5160.4670.424

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
So the little box at the top is for 1,000 selected in the drop down?

And if 50,000 was selected the Ded's would be 0.415 - 0.361 - 0.313 ??

Howard
 
Upvote 0
I think this will do it.

With Table & Ded in cells D1 & E1

Drop Down in cell G1 (1,000 to 100,000)

E2 =VLOOKUP(G1,$D$8:$E$19,2,0)
E3 =VLOOKUP(G1,$D$8:$F$19,3,0)
E4 =VLOOKUP(G1,$D$8:$G$19,4,0)

With the 1000 value of the table in cell D8 and the table follows to G19.

Howard
 
Upvote 0
So the little box at the top is for 1,000 selected in the drop down?

And if 50,000 was selected the Ded's would be 0.415 - 0.361 - 0.313 ??

Howard

Hi Howard,

I apologize for not being more clear in my question. Just to clarify, I want column E to update based on the deductible value that is selected in the drop-down and the table number (1,2 or 3) that is in column D. So for example, if 5,000 is selected from the drop-down and the table number in column D is 1, return value 0.131, if the table number in column D is 2 return value .109, etc, etc....I'd like to do the same for all deductible amounts.
 
Upvote 0
I thought I was showing that with the VLOOKUP's and the drop down in G1.

Here is my example on a worksheet.

Take a look and let me know what needs to be done different.

https://www.dropbox.com/s/y5umer4f98bc4m3/Book5 Deductibles.xlsm?dl=0


Howard

Howard,

In your workbook, the table numbers are in cells D2:D4. Is there a way for cells E2:E4 to auto-update if any of the cells in D2:D4 were to get manually updated by the user? That's what I am trying to accomplish. For example, if cell D2 were to get updated from a 1 to a 2, then cell E2 would become .109?

Thank you so much for your time and help. I really appreciate it.
 
Upvote 0
Try the link in Post #5 again, I made some changes, heading in the right direction I hope.

Howard
 
Upvote 0

Forum statistics

Threads
1,221,827
Messages
6,162,202
Members
451,752
Latest member
freddocp

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