Changing values in multiple cells based off of drop down list.

RamDodgerLaker

New Member
Joined
Jan 25, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello, I work as a proposal manager and need some help with my estimator tool I am building. I basically need the pricing for labor to change based off of what state is selected. For example if I select California in my estimator I need the price for a tech 1 to show 90k and the price for a tech 2 to show 100k but if I select West Virginia I need the price for a tech 1 to show 60k and for a tech 2 to show 70k.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Welcome to the MrExcel forum!

You didn't give us a lot of detail, but maybe something like this:

Book1
ABCDEFGHIJ
1StateTech1Tech2StateEstimate
2California90000100000West VirginiaExtended
3West Virginia6000070000WorkerRateHours
4Alaska5000075000Tech1600006
5Oregon7000080000Tech2700002
6
7PartsUnit CostCount
8Widget1002
9Gizmo75.323
10
11Total
12
Sheet1
Cell Formulas
RangeFormula
H4:H5H4=SUMPRODUCT($B$2:$C$5*(G4=$B$1:$C$1)*($E$2=$A$2:$A$5))
Cells with Data Validation
CellAllowCriteria
E2List=A2:A5


First, build a table like I did in A1:C5. Then you can put in a Data Validation drop-down, using A2:A5 as the list. This lets you pick a state. Then once you have the state, there are a lot of ways to extract the right rate for the state and title. I put one example in H4:H5. I didn't go much further, since the rates you mentioned must be annual salaries, and not hourly rates, so I couldn't picture how your estimator actually looks. But this should give you an idea of what you can do.

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,215,091
Messages
6,123,062
Members
449,090
Latest member
fragment

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