Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,101
Default IF statement circumvent with Criteria or VBA,vlookup, index

I have a question involving exceeding the amount of IF statements.
Cell A1 has drop down list of 100 choices, the user selects one
Cell B1 has another drop down list of 100 choices, of which the user selects
one
Cell C1, once a selection is made in both A1and B1, give an answer from 4
possible values in C1.
i.e if a1 = dog and b1 = chair then c1 = yes
The drop down list is important for the use since I do not desire to
display a 100 choices for A1 and B1.

I know that I can only use 7 nested IF statement in a cell.
What would be the best way to display the values with drop down list.
Insert criteria in cell, use a VBA macro?
If so what would the cell or VBA look like?
With a 100 possible selections in both a1 or b1, the simplest way would be
the best.

thanks to anyone who can help.
Mike
--
mike
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 136
Default IF statement circumvent with Criteria or VBA,vlookup, index

Hundred nested functions is really hard to work with anyway.
Try VLOOKUP insttead.

"mike" wrote:

I have a question involving exceeding the amount of IF statements.
Cell A1 has drop down list of 100 choices, the user selects one
Cell B1 has another drop down list of 100 choices, of which the user selects
one
Cell C1, once a selection is made in both A1and B1, give an answer from 4
possible values in C1.
i.e if a1 = dog and b1 = chair then c1 = yes
The drop down list is important for the use since I do not desire to
display a 100 choices for A1 and B1.

I know that I can only use 7 nested IF statement in a cell.
What would be the best way to display the values with drop down list.
Insert criteria in cell, use a VBA macro?
If so what would the cell or VBA look like?
With a 100 possible selections in both a1 or b1, the simplest way would be
the best.

thanks to anyone who can help.
Mike
--
mike

  #3   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default IF statement circumvent with Criteria or VBA,vlookup, index

Posted the response below 3 days ago to your earlier posting:
------- ------
One approach ..

Assume your 100 x 100 x 100 response/answer table is in a sheet: X,
within A1:C100 as below, where col C = answers

dog chair yes
dog table no
dog food maybe
cat chair no
cat table maybe
cat food yes
etc

Then in another sheet, where you have the corresponding DVs running in cols
A and B, from row1 down, you could place this array formula in C1, and
confirm the formula by pressing CTRL+SHIFT+ENTER (instead of just pressing
ENTER):

=IF(OR(A1="",B1=""),"",INDEX(X!C$1:C$100,MATCH(1,( X!A$1:A$100=A1)*(X!B$1:B$100=B1),0)))

Copy C1 down as far as required. Col C will return the answers for the DV
selections made in cols A and B.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"mike" wrote:
I have a question involving exceeding the amount of IF statements.
Cell A1 has drop down list of 100 choices, the user selects one
Cell B1 has another drop down list of 100 choices, of which the user selects
one
Cell C1, once a selection is made in both A1and B1, give an answer from 4
possible values in C1.
i.e if a1 = dog and b1 = chair then c1 = yes
The drop down list is important for the use since I do not desire to
display a 100 choices for A1 and B1.

I know that I can only use 7 nested IF statement in a cell.
What would be the best way to display the values with drop down list.
Insert criteria in cell, use a VBA macro?
If so what would the cell or VBA look like?
With a 100 possible selections in both a1 or b1, the simplest way would be
the best.

thanks to anyone who can help.
Mike
--
mike

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,101
Default IF statement circumvent with Criteria or VBA,vlookup, index

Max
When I tried the formula below, received blank cell. Maybe the True part, "
", is misplaced in the formula.
Additionally, I needed the sheet to display only 3 cells, A1, B1 and C1
with A1 and B1 being a drop down selection list and C1 displaying the
correct value out of 4 possible choices, as or right now all choices in a1
and b1 are listed.
Thanks for your help.

--
mike


"Max" wrote:

Posted the response below 3 days ago to your earlier posting:
------- ------
One approach ..

Assume your 100 x 100 x 100 response/answer table is in a sheet: X,
within A1:C100 as below, where col C = answers

dog chair yes
dog table no
dog food maybe
cat chair no
cat table maybe
cat food yes
etc

Then in another sheet, where you have the corresponding DVs running in cols
A and B, from row1 down, you could place this array formula in C1, and
confirm the formula by pressing CTRL+SHIFT+ENTER (instead of just pressing
ENTER):

=IF(OR(A1="",B1=""),"",INDEX(X!C$1:C$100,MATCH(1,( X!A$1:A$100=A1)*(X!B$1:B$100=B1),0)))

Copy C1 down as far as required. Col C will return the answers for the DV
selections made in cols A and B.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"mike" wrote:
I have a question involving exceeding the amount of IF statements.
Cell A1 has drop down list of 100 choices, the user selects one
Cell B1 has another drop down list of 100 choices, of which the user selects
one
Cell C1, once a selection is made in both A1and B1, give an answer from 4
possible values in C1.
i.e if a1 = dog and b1 = chair then c1 = yes
The drop down list is important for the use since I do not desire to
display a 100 choices for A1 and B1.

I know that I can only use 7 nested IF statement in a cell.
What would be the best way to display the values with drop down list.
Insert criteria in cell, use a VBA macro?
If so what would the cell or VBA look like?
With a 100 possible selections in both a1 or b1, the simplest way would be
the best.

thanks to anyone who can help.
Mike
--
mike

  #5   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default IF statement circumvent with Criteria or VBA,vlookup, index

Here's a working sample for the earlier response, Mike:
http://cjoint.com/?iusfBXwNsw
mike.xls
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"mike" wrote:
Max
When I tried the formula below, received blank cell. Maybe the True part, "
", is misplaced in the formula.
Additionally, I needed the sheet to display only 3 cells, A1, B1 and C1
with A1 and B1 being a drop down selection list and C1 displaying the
correct value out of 4 possible choices, as or right now all choices in a1
and b1 are listed.
Thanks for your help.

--
mike




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,101
Default IF statement circumvent with Criteria or VBA,vlookup, index

Max
It works perfectly
Thank you very much
--
mike


"Max" wrote:

Here's a working sample for the earlier response, Mike:
http://cjoint.com/?iusfBXwNsw
mike.xls
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"mike" wrote:
Max
When I tried the formula below, received blank cell. Maybe the True part, "
", is misplaced in the formula.
Additionally, I needed the sheet to display only 3 cells, A1, B1 and C1
with A1 and B1 being a drop down selection list and C1 displaying the
correct value out of 4 possible choices, as or right now all choices in a1
and b1 are listed.
Thanks for your help.

--
mike


  #7   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default IF statement circumvent with Criteria or VBA,vlookup, index

Good to hear that, Mike. You're welcome.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"mike" wrote in message
...
Max
It works perfectly
Thank you very much



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
challenge! - match/index/lookup with multiple criteria laststraw Excel Worksheet Functions 2 May 5th 07 05:23 AM
Sum within an Index Match Statement Mike The Newb Excel Discussion (Misc queries) 4 January 8th 07 09:46 PM
Index function and changing criteria help. [email protected] Excel Worksheet Functions 5 August 22nd 06 07:37 AM
Add a criteria to an Index and Match formula Tomkat743 Excel Discussion (Misc queries) 2 March 31st 06 05:28 PM
Index/Match Multiple Criteria EstherJ Excel Discussion (Misc queries) 2 March 31st 06 12:54 PM


All times are GMT +1. The time now is 07:30 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"