Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 107
Default Create list from criteria

Morning from a Sunny RSA,

I have a list:
Column A Column B
Unit # Unit Type
98R01 Rigid
97D02 Drawbar
00R03 Rigid
02S02 Semi

Now in a cell A10 I have got the word Rigid, and in cell A11 down I want to
list all the unit ids that match the word Rigid as in column B. The in column
B10 the word Drawbar with the formula in B11 to pull that unit #. The same
for the unit type Semi.

Answer should be:
Rigid Drawbar Semi
98R01 97D02 02S02
00R03

Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Create list from criteria

=IF(ISERROR(SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$A$9) ,""),ROW($A1))),"",
INDEX($A$1:$A$9,SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$ A$9),""),ROW($A1))))

this is an array formula, so commit with Ctrl-Shift-Enter, not just Enter
--
__________________________________
HTH

Bob

"Sunnyskies" wrote in message
...
Morning from a Sunny RSA,

I have a list:
Column A Column B
Unit # Unit Type
98R01 Rigid
97D02 Drawbar
00R03 Rigid
02S02 Semi

Now in a cell A10 I have got the word Rigid, and in cell A11 down I want
to
list all the unit ids that match the word Rigid as in column B. The in
column
B10 the word Drawbar with the formula in B11 to pull that unit #. The same
for the unit type Semi.

Answer should be:
Rigid Drawbar Semi
98R01 97D02 02S02
00R03

Thanks in advance.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 107
Default Create list from criteria

Morning Bob,

Thanks for the quick response, but do not want to use array's

Sunnyskies

"Bob Phillips" wrote:

=IF(ISERROR(SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$A$9) ,""),ROW($A1))),"",
INDEX($A$1:$A$9,SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$ A$9),""),ROW($A1))))

this is an array formula, so commit with Ctrl-Shift-Enter, not just Enter
--
__________________________________
HTH

Bob

"Sunnyskies" wrote in message
...
Morning from a Sunny RSA,

I have a list:
Column A Column B
Unit # Unit Type
98R01 Rigid
97D02 Drawbar
00R03 Rigid
02S02 Semi

Now in a cell A10 I have got the word Rigid, and in cell A11 down I want
to
list all the unit ids that match the word Rigid as in column B. The in
column
B10 the word Drawbar with the formula in B11 to pull that unit #. The same
for the unit type Semi.

Answer should be:
Rigid Drawbar Semi
98R01 97D02 02S02
00R03

Thanks in advance.




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Create list from criteria

Then do it your way.

What is wrong with arrays?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Sunnyskies" wrote in message
...
Morning Bob,

Thanks for the quick response, but do not want to use array's

Sunnyskies

"Bob Phillips" wrote:

=IF(ISERROR(SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$A$9) ,""),ROW($A1))),"",
INDEX($A$1:$A$9,SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$ A$9),""),ROW($A1))))

this is an array formula, so commit with Ctrl-Shift-Enter, not just Enter
--
__________________________________
HTH

Bob

"Sunnyskies" wrote in message
...
Morning from a Sunny RSA,

I have a list:
Column A Column B
Unit # Unit Type
98R01 Rigid
97D02 Drawbar
00R03 Rigid
02S02 Semi

Now in a cell A10 I have got the word Rigid, and in cell A11 down I
want
to
list all the unit ids that match the word Rigid as in column B. The in
column
B10 the word Drawbar with the formula in B11 to pull that unit #. The
same
for the unit type Semi.

Answer should be:
Rigid Drawbar Semi
98R01 97D02 02S02
00R03

Thanks in advance.






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 107
Default Create list from criteria

The end users are not computer literate.

"Bob Phillips" wrote:

Then do it your way.

What is wrong with arrays?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Sunnyskies" wrote in message
...
Morning Bob,

Thanks for the quick response, but do not want to use array's

Sunnyskies

"Bob Phillips" wrote:

=IF(ISERROR(SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$A$9) ,""),ROW($A1))),"",
INDEX($A$1:$A$9,SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$ A$9),""),ROW($A1))))

this is an array formula, so commit with Ctrl-Shift-Enter, not just Enter
--
__________________________________
HTH

Bob

"Sunnyskies" wrote in message
...
Morning from a Sunny RSA,

I have a list:
Column A Column B
Unit # Unit Type
98R01 Rigid
97D02 Drawbar
00R03 Rigid
02S02 Semi

Now in a cell A10 I have got the word Rigid, and in cell A11 down I
want
to
list all the unit ids that match the word Rigid as in column B. The in
column
B10 the word Drawbar with the formula in B11 to pull that unit #. The
same
for the unit type Semi.

Answer should be:
Rigid Drawbar Semi
98R01 97D02 02S02
00R03

Thanks in advance.








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Create list from criteria

So do it for them, lock the sheet down and don't let them change it.

--
__________________________________
HTH

Bob

"Sunnyskies" wrote in message
...
The end users are not computer literate.

"Bob Phillips" wrote:

Then do it your way.

What is wrong with arrays?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Sunnyskies" wrote in message
...
Morning Bob,

Thanks for the quick response, but do not want to use array's

Sunnyskies

"Bob Phillips" wrote:

=IF(ISERROR(SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$A$9) ,""),ROW($A1))),"",
INDEX($A$1:$A$9,SMALL(IF($B$1:$B$9=A$10,ROW($A$1:$ A$9),""),ROW($A1))))

this is an array formula, so commit with Ctrl-Shift-Enter, not just
Enter
--
__________________________________
HTH

Bob

"Sunnyskies" wrote in message
...
Morning from a Sunny RSA,

I have a list:
Column A Column B
Unit # Unit Type
98R01 Rigid
97D02 Drawbar
00R03 Rigid
02S02 Semi

Now in a cell A10 I have got the word Rigid, and in cell A11 down I
want
to
list all the unit ids that match the word Rigid as in column B. The
in
column
B10 the word Drawbar with the formula in B11 to pull that unit #.
The
same
for the unit type Semi.

Answer should be:
Rigid Drawbar Semi
98R01 97D02 02S02
00R03

Thanks in advance.








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
Extract list of units based on error criteria to new list Sheila Excel Worksheet Functions 14 August 9th 07 03:57 AM
Extract list of units based on error criteria to new list Sheila Excel Worksheet Functions 0 August 9th 07 01:50 AM
Can you create a LIST and DATA VALIDATION CRITERIA in same cell? Janet Excel Discussion (Misc queries) 2 July 13th 06 03:36 AM
Create list of text matching criteria MichaelG Excel Worksheet Functions 5 March 13th 06 06:00 PM
Create a list based on single shared criteria David127 Excel Worksheet Functions 5 December 15th 05 02:36 AM


All times are GMT +1. The time now is 06:50 PM.

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

About Us

"It's about Microsoft Excel"