Formula in one cell to return number based on drop down selection in another cell.

jwest510

New Member
Joined
Feb 3, 2018
Messages
8
I got such great help earlier today, I thought I'd ask for another favor. Scouring for answers didn't seem to help. So my situation is, I've created a drop down in B1 that has 4 options. Each option has a records retention rate associated with it. I would like cell B2 to reflect that rate based on the option I choose in B1.

So for example: B1 says "Process", I would like B2 to show "3". If I changed B1 to say, Official, I would like B2 to show 7. If B1 says, Procedure, B2 should show 3.

Any thoughts?
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
you can use a nested if in B2 put

BUT did you want 3 in B2 for Process and for Procedure ?

you only have 3 options
Process = 3
Procedure = 3
Official = 7

=IF( B1 = "process" , 3 , IF( B1 = "official" , 7 , IF( etc
OR if the process / procedure is correct and you only have 3 values to show
then if its not process or procedure - it must be Official so thats a 7

=IF( OR( B1 = "procedure" , B1 = "process") , 3 , 7 )

lets us know exactly what can be in B1 and what results you need in B2
 
Last edited:
Upvote 0
Hi,

A couple of ways to consider:


Excel 2010
ABCDEFG
1HardcodedProcedureFrom ListOfficialProcess
237Official
3Procedure
Sheet23
Cell Formulas
RangeFormula
B2=LOOKUP(B1,{"Process","Official","Procedure"},{3,7,3})
E2=LOOKUP(E1,G1:G3,{3,7,3})


Formula in B2 has your criteria hardcoded into the formula.
Formula in E2 uses your Drop Down list range as criteria, in my sample, the drop down list is G1:G3.
 
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0

Forum statistics

Threads
1,215,330
Messages
6,124,305
Members
449,150
Latest member
NyDarR

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