Help please - yes-no form

evatyn

New Member
Joined
Jan 25, 2022
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hello,
I am a complete Excel novice tasked with creating a form that contains three questions, the answer to each is either High or Low. Based on the answers, there are 8 possible outcomes e.g.
Low - Low - Low = Type 8
High - High - High = Type 7
Low - High - High = Type 6
High - High - Low = Type 5
High - Low - High = Type 4
Low - High - Low = Type 3
Low - Low - High = Type 2
High - Low - Low = Type 1

I created drop down boxes for each with either Low or High but no idea how to make the next cell determine the type based on the 3 answers? Any help would be much appreciated :)
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Welcome to the MrExcel forum!

Your list has no easily identifiable pattern, so a look-up table seems best. Here's one way to accomplish that:

Book2
ABCDEFGHI
1Value1Value2Value3Typedropdown1dropdown2dropdown3Type
2LowLowLow8LowHighHigh6
3HighHighHigh7
4LowHighHigh6
5HighHighLow5
6HighLowHigh4
7LowHighLow3
8LowLowHigh2
9HighLowLow1
Sheet17
Cell Formulas
RangeFormula
I2I2=SUMIFS(D2:D9,A2:A9,F2,B2:B9,G2,C2:C9,H2)


The table can be incorporated in the formula itself, but it would make it pretty awkward.

Hope this helps!
 
Upvote 0
Solution
Eric - it is working and I am literally crying with joy. I hope this did not take you too long to come up with, but you absolutely saved my bacon here and I am soo grateful! :)))

Is there a way to assign a name to each type? for example: If type 8 shows in one cell then the call next to show name e.g. if type 7 show "Definitive", if type 6 "Dependent" , if type 5 "Dangerous" etc?
 
Upvote 0
Sure!

Book2
ABCDEFGHIJK
1Value1Value2Value3TypeDescriptiondropdown1dropdown2dropdown3TypeDescription
2LowLowLow8DireLowHighHigh6Dependent
3HighHighHigh7Definitive
4LowHighHigh6Dependent
5HighHighLow5Dangerous
6HighLowHigh4Dastardly
7LowHighLow3Devilish
8LowLowHigh2Demonic
9HighLowLow1Dreadful
Sheet17
Cell Formulas
RangeFormula
J2J2=FILTER(D2:D9,(A2:A9=G2)*(B2:B9=H2)*(C2:C9=I2))
K2K2=FILTER(E2:E9,(A2:A9=G2)*(B2:B9=H2)*(C2:C9=I2))


I took a different approach this time, since you are looking for text instead of a number, and since you have Excel 365. See if this works for you!
 
Upvote 0
Haha works a treat, thanks again, you're a star! :)))))
 
Upvote 0

Forum statistics

Threads
1,214,839
Messages
6,121,887
Members
449,057
Latest member
Moo4247

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