Reference a Table To Fill Sheet From A Form

fmexcel

New Member
Joined
Feb 7, 2018
Messages
1
I made a form with 3 different Combo Boxes, "Age, Gender, Coverage"
I want to be able to apply the selected items to a sheet but I only need the value of the table when all three are applied to populate the cell in the sheet.
For example:
I open the form, select "Male, 18, 250K" click button apply and have it pull the value on the table that corresponds to all 3, "X"

I'm no sure how to link the table to the drop down buttons.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Sometimes it's easier to think of thinks as a sheet formula first. So, for you example, let's suppose
Col A = Ages
Col B = Genders
Col C = Coverage
Col D = Value to return if all 3 match

In cell F1 you have this formula:
Code:
=INDEX(D:D,MATCH(18&"Male"&250000,A:A&B:B&C:C,0))  ctrl+shift+enter to make array
This will return the matching value in Col D.
Hope it will help you think it through.
 
Upvote 0

Forum statistics

Threads
1,216,115
Messages
6,128,919
Members
449,478
Latest member
Davenil

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