Excel Help - Pick from list

Associate
Joined
15 Jun 2009
Posts
2,494
Hopefully someone who knows a bit about excel will be able to help me out here.

I have a spreadsheet with various headings - Lets say Red Shirts and Blue Shirts and then various names underneath them. I'd like a main spreadsheet that I can pick from a list of Blue and Red, Then it would show me all the names relating to this. Is this possible in Excel?

I know my way around Access and this is simple, But this needs to work on Macs too which don't have Access to Access (see what I did there? :rolleyes:)
 
Is this as simple as it sounds? If so it's just a data validation technique. Give a name to a range of cells, then add data validation to look up the list from that range.
 
How many rows / columns are you going to have?

If not too many, you could use data validation in A1, to give the option of Yellow/Red/Blue.

Then in A2 and downwards, you could use an nested IF statement something like :-

=IF($A$1="Yellow",C2,IF($A$1="Red",D2,IF($A$1="Blue",E2,"")))
 
Last edited:
Back
Top Bottom