Check a list and return a value

2112

New Member
Joined
Mar 21, 2002
Messages
1
I have a list of product features, in column A, and across the top I have product model numbers. If a product has a certain feature, then I put a cross on the corresponding cell. How can I then, on a separate sheet, run a command that says "list all the models that have an LCD Display"?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi 2112

Try this:

Assume Sheet3 is your product features sheet.
Put features in A4:A100
Put Model Numbers in B3:Z3
A1 & A2 formula =Sheet4!A1
B1 formula =IF(ISERROR(HLOOKUP(COLUMN()-1,2:3,2,FALSE)),"",HLOOKUP(COLUMN()-1,2:3,2,FALSE))
scroll formula right to column Z
B2 formula =IF(OFFSET(B2,MATCH($A$2,$A$3:$A$100,0),0)="x",COUNT(A$2:$A2)+1,"")
scroll formula right to column Z
Hide rows 1 and 2

Assume Sheet4 is the sheet you want to list all the models that have an LCD Display
Formula in B1 =IF(Sheet3!B1<>"",Sheet3!B1,"")
scroll formula right to column Z

Now type "LCD Display" in Sheet4 cell A1 (type it exactly as it appears in column A of Sheet3)

Hope this gives you some ideas

Regards
Derek
PS (original post, slight error in Sheet3 B2 formula....now amended)
This message was edited by Derek on 2002-03-22 07:51
This message was edited by Derek on 2002-03-22 07:53
 
Upvote 0

Forum statistics

Threads
1,214,395
Messages
6,119,265
Members
448,881
Latest member
Faxgirl

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