NEED HELP with MULTIPLE IF STATEMENTS

dset64

New Member
Joined
Oct 17, 2012
Messages
8
https://www.dropbox.com/sh/swp4v4fhdik3sf2/W2hUtRU3Vh

Above is the Dropbox link to my question. Below is a list of all questions, and IF(THEN statements. If the cell to the top left that currently says "Question 1" reads a certain question, the box changes from FALSE to the Question.

The HIGHLIGHTED box is my problem. When I say "Question 5" I want question to appear next to it.

THE FORMULA ABOVE ALREADY WORKS FINE WITH THE FIRST 2 QUESTIONS. My problem is how do I do more?

ANYBODY KNOW HOW TO DO AN IF(AND(AND(AND(AND(etc. statement? OR an IF(OR(OR(OR(OR(etc. statement??? HELP!
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Suppose your question number is in Cell B2 and your question lookup table is in range B4:C13 then

Use this formula in Cell C2...
=IFERROR(VLOOKUP(B2,B4:C13,2,0),"")

and just change the question number in Cell B2 and in the next cell the question will appear according to your question number...
Hope this will work for you, Best of Luck...
 
Upvote 0
For some reason your screenshot is blurry on my screen

What is your objective?
Are you just trying to bring over the question text given an entry of a nearby question number? If this is the case, might be just shooting for a vlookup.

=VLOOKUP($A$11,$A$101:$B$200,2,0)
 
Upvote 0

Forum statistics

Threads
1,223,897
Messages
6,175,270
Members
452,628
Latest member
dd2

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