• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Two Things: Depended Dropdowns and LOOKUP Function

OfficeMan81

New Member
I trying to create an Excel spreadsheet that has two dropdowns and an area that displays some information based on what is selected.


If Dropdown 1 is X and Dropdown 2 is X show this text.


Any suggestions? Thanks
 
Making some major assumptions about the layout of your lookup table, you could use this array formula (Ctrl+Shift+Enter to confirm):

=INDEX(C:C,MIN(IF((A1:A100=Dropdown1)*(B1:B100=Dropdown2),Row(A1:A100))))


Otherwise, we need more info about how your lookup table is structured.
 
Thanks for the reply.


I have a list of responses for a call center. If a woman calls (Dropdown 1) and the complaint is X (Dropdown 2) then use one of these responses. I will have 4 sections that display different resolutions.


Do this help?
 
Back
Top