Multiple IF statements

fishcakes

New Member
Joined
Jun 20, 2016
Messages
23
Office Version
  1. 365
Platform
  1. Windows
I want to acheive the following…
- if you select "daily" in B2, the in B4, the Drop down / Data Validation selections will be Mon / Tue / Wed / Thu / Fri
- if you select "weekly" in B2, the in B4, the Drop down / Data Validation selections will be 1 / 2 / 3
- if you select "Monthly " in B2, the in B4, the Drop down / Data Validation selections will be M / Q

1706457668351.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Data Validation doesn't like arrays in its formulas, which makes making variable lists like this problematic. But it's pretty easy to create a formula on the spreadsheet to do it, then just refer DV to that formula, like this:

Book1
ABCD
1
2Frequencydaily
3Lists
4DayMon
5Tue
6Wed
7Thu
8Fri
9
Sheet12
Cell Formulas
RangeFormula
D4:D8D4=SWITCH(B2,"Daily",{"Mon";"Tue";"Wed";"Thu";"Fri"},"Weekly",{1;2;3},"Monthly",{"M";"Q"})
Dynamic array formulas.
Cells with Data Validation
CellAllowCriteria
B4List=D4#
 
Upvote 0
Solution

Forum statistics

Threads
1,215,079
Messages
6,123,005
Members
449,092
Latest member
masterms

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