Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default isolating specific list

Hello,

I have a huge list of patients identified by number... and columns of info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate those
rows efficiently?
  #2   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default isolating specific list

If there is some field which would uniquely identify thiese patients, you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns of info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate those
rows efficiently?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default isolating specific list

there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200 times to
include all the patients that i want... but excel wouldn't take a formula
that long.... is there a way i can do an IF statement without listing all
the patients in theformula? i tried just using =if(b2=d1:d200.... with my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients, you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns of info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate those
rows efficiently?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default isolating specific list

But how do you select them, just pt1 up to pt200? And the list is, just
select the whole list (make sure you have headers), then do
datafilterautofilter, from dropdown select custom and use (depending on
the way they are "branded")

if all patients are called pt1 and so on and you want pt1 to pt200 use is
greater than or equal to pt1, then in the second choice use is less than or
equal to pt200
or if all the patients you want start with pt, then use begins with pt

If you just want to get 200 randomly, use a help column and =RAND()

copy down, sort by the help column and select the first 200

Also if this works and when you have filtered them just select the visible
range and copy and paste somewhere else


--
Regards,

Peo Sjoblom




"Elle" wrote in message
...
there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200 times
to
include all the patients that i want... but excel wouldn't take a formula
that long.... is there a way i can do an IF statement without listing all
the patients in theformula? i tried just using =if(b2=d1:d200.... with my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients,
you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns of
info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate
those
rows efficiently?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default isolating specific list

thanks the reply

the problem is the patient numbers are random.. for example.. i need pt 4,
89, 154....

any suggestions?

"Peo Sjoblom" wrote:

But how do you select them, just pt1 up to pt200? And the list is, just
select the whole list (make sure you have headers), then do
datafilterautofilter, from dropdown select custom and use (depending on
the way they are "branded")

if all patients are called pt1 and so on and you want pt1 to pt200 use is
greater than or equal to pt1, then in the second choice use is less than or
equal to pt200
or if all the patients you want start with pt, then use begins with pt

If you just want to get 200 randomly, use a help column and =RAND()

copy down, sort by the help column and select the first 200

Also if this works and when you have filtered them just select the visible
range and copy and paste somewhere else


--
Regards,

Peo Sjoblom




"Elle" wrote in message
...
there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200 times
to
include all the patients that i want... but excel wouldn't take a formula
that long.... is there a way i can do an IF statement without listing all
the patients in theformula? i tried just using =if(b2=d1:d200.... with my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients,
you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns of
info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate
those
rows efficiently?






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default isolating specific list

It's not possible unless you have something that distinguish them unless you
have a list with just the id numbers, then you could tag them in a help
column

=ISNUMBER(MATCH(A2,List,0))

where List can be a named range with the IDs or a range like $G$2:$G202

copy down and the apply autofilter and filter on TRUE


I mean how do you know what numbers to include?



--
Regards,

Peo Sjoblom



"Elle" wrote in message
...
thanks the reply

the problem is the patient numbers are random.. for example.. i need pt 4,
89, 154....

any suggestions?

"Peo Sjoblom" wrote:

But how do you select them, just pt1 up to pt200? And the list is, just
select the whole list (make sure you have headers), then do
datafilterautofilter, from dropdown select custom and use (depending on
the way they are "branded")

if all patients are called pt1 and so on and you want pt1 to pt200 use is
greater than or equal to pt1, then in the second choice use is less than
or
equal to pt200
or if all the patients you want start with pt, then use begins with pt

If you just want to get 200 randomly, use a help column and =RAND()

copy down, sort by the help column and select the first 200

Also if this works and when you have filtered them just select the
visible
range and copy and paste somewhere else


--
Regards,

Peo Sjoblom




"Elle" wrote in message
...
there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200
times
to
include all the patients that i want... but excel wouldn't take a
formula
that long.... is there a way i can do an IF statement without listing
all
the patients in theformula? i tried just using =if(b2=d1:d200.... with
my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients,
you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns
of
info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate
those
rows efficiently?






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default isolating specific list

Hey there, thanks again for your responses

if i can get the numbers in column A to line up with the ones in column b,
then i can filter column A for "nonblanks"..... any ideas on how to do that?
someone on this forum explained it when i looked last year.. but i can't find
that thread at all now... any ideas how?

A B
pts i want list of patients
3 1
8 2
10 ... 3
4
5
6
7
8
9
10....

"Peo Sjoblom" wrote:

It's not possible unless you have something that distinguish them unless you
have a list with just the id numbers, then you could tag them in a help
column

=ISNUMBER(MATCH(A2,List,0))

where List can be a named range with the IDs or a range like $G$2:$G202

copy down and the apply autofilter and filter on TRUE


I mean how do you know what numbers to include?



--
Regards,

Peo Sjoblom



"Elle" wrote in message
...
thanks the reply

the problem is the patient numbers are random.. for example.. i need pt 4,
89, 154....

any suggestions?

"Peo Sjoblom" wrote:

But how do you select them, just pt1 up to pt200? And the list is, just
select the whole list (make sure you have headers), then do
datafilterautofilter, from dropdown select custom and use (depending on
the way they are "branded")

if all patients are called pt1 and so on and you want pt1 to pt200 use is
greater than or equal to pt1, then in the second choice use is less than
or
equal to pt200
or if all the patients you want start with pt, then use begins with pt

If you just want to get 200 randomly, use a help column and =RAND()

copy down, sort by the help column and select the first 200

Also if this works and when you have filtered them just select the
visible
range and copy and paste somewhere else


--
Regards,

Peo Sjoblom




"Elle" wrote in message
...
there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200
times
to
include all the patients that i want... but excel wouldn't take a
formula
that long.... is there a way i can do an IF statement without listing
all
the patients in theformula? i tried just using =if(b2=d1:d200.... with
my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients,
you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns
of
info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate
those
rows efficiently?






  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default isolating specific list

Enter Peo's formula =ISNUMBER(MATCH(A1,$B$1:$B$202,0)) into C1 and copy down.

The numbers found in Column B that match those in Column A will show TRUE.

Filter on TRUE


Gord Dibben MS Excel MVP

On Thu, 28 Jun 2007 16:10:01 -0700, Elle wrote:

Hey there, thanks again for your responses

if i can get the numbers in column A to line up with the ones in column b,
then i can filter column A for "nonblanks"..... any ideas on how to do that?
someone on this forum explained it when i looked last year.. but i can't find
that thread at all now... any ideas how?

A B
pts i want list of patients
3 1
8 2
10 ... 3
4
5
6
7
8
9
10....

"Peo Sjoblom" wrote:

It's not possible unless you have something that distinguish them unless you
have a list with just the id numbers, then you could tag them in a help
column

=ISNUMBER(MATCH(A2,List,0))

where List can be a named range with the IDs or a range like $G$2:$G202

copy down and the apply autofilter and filter on TRUE


I mean how do you know what numbers to include?



--
Regards,

Peo Sjoblom



"Elle" wrote in message
...
thanks the reply

the problem is the patient numbers are random.. for example.. i need pt 4,
89, 154....

any suggestions?

"Peo Sjoblom" wrote:

But how do you select them, just pt1 up to pt200? And the list is, just
select the whole list (make sure you have headers), then do
datafilterautofilter, from dropdown select custom and use (depending on
the way they are "branded")

if all patients are called pt1 and so on and you want pt1 to pt200 use is
greater than or equal to pt1, then in the second choice use is less than
or
equal to pt200
or if all the patients you want start with pt, then use begins with pt

If you just want to get 200 randomly, use a help column and =RAND()

copy down, sort by the help column and select the first 200

Also if this works and when you have filtered them just select the
visible
range and copy and paste somewhere else


--
Regards,

Peo Sjoblom




"Elle" wrote in message
...
there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200
times
to
include all the patients that i want... but excel wouldn't take a
formula
that long.... is there a way i can do an IF statement without listing
all
the patients in theformula? i tried just using =if(b2=d1:d200.... with
my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients,
you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns
of
info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate
those
rows efficiently?







  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default isolating specific list

got it! THANKS EVERYONE.. i really appreciate it

"Gord Dibben" wrote:

Enter Peo's formula =ISNUMBER(MATCH(A1,$B$1:$B$202,0)) into C1 and copy down.

The numbers found in Column B that match those in Column A will show TRUE.

Filter on TRUE


Gord Dibben MS Excel MVP

On Thu, 28 Jun 2007 16:10:01 -0700, Elle wrote:

Hey there, thanks again for your responses

if i can get the numbers in column A to line up with the ones in column b,
then i can filter column A for "nonblanks"..... any ideas on how to do that?
someone on this forum explained it when i looked last year.. but i can't find
that thread at all now... any ideas how?

A B
pts i want list of patients
3 1
8 2
10 ... 3
4
5
6
7
8
9
10....

"Peo Sjoblom" wrote:

It's not possible unless you have something that distinguish them unless you
have a list with just the id numbers, then you could tag them in a help
column

=ISNUMBER(MATCH(A2,List,0))

where List can be a named range with the IDs or a range like $G$2:$G202

copy down and the apply autofilter and filter on TRUE


I mean how do you know what numbers to include?



--
Regards,

Peo Sjoblom



"Elle" wrote in message
...
thanks the reply

the problem is the patient numbers are random.. for example.. i need pt 4,
89, 154....

any suggestions?

"Peo Sjoblom" wrote:

But how do you select them, just pt1 up to pt200? And the list is, just
select the whole list (make sure you have headers), then do
datafilterautofilter, from dropdown select custom and use (depending on
the way they are "branded")

if all patients are called pt1 and so on and you want pt1 to pt200 use is
greater than or equal to pt1, then in the second choice use is less than
or
equal to pt200
or if all the patients you want start with pt, then use begins with pt

If you just want to get 200 randomly, use a help column and =RAND()

copy down, sort by the help column and select the first 200

Also if this works and when you have filtered them just select the
visible
range and copy and paste somewhere else


--
Regards,

Peo Sjoblom




"Elle" wrote in message
...
there are 200 patients that i need... and i tried using
=if(B2=pt1,"yes",=if(B2=pt2,"yes"........ with this repeated 200
times
to
include all the patients that i want... but excel wouldn't take a
formula
that long.... is there a way i can do an IF statement without listing
all
the patients in theformula? i tried just using =if(b2=d1:d200.... with
my
list of patients.. but that didn't work.... any suggestions?


thanks =)

"bj" wrote:

If there is some field which would uniquely identify thiese patients,
you
could use auto or advanced filter to show just these patients or to do
calulations on just thes patients
if there is nothing which uniquely identifies these patients on the
preadsheet, I w9ould make a helper row and mark it in a way to do the
identification


"Elle" wrote:

Hello,

I have a huge list of patients identified by number... and columns
of
info
like gender, birthday, medical issues etc.

I only need the info from 200 specific patients. How can I isolate
those
rows efficiently?








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
Isolating text and numbers [email protected] Excel Discussion (Misc queries) 8 April 28th 07 02:29 AM
Isolating mailadresses Therese Excel Worksheet Functions 1 September 18th 06 12:15 PM
if specific value from list A equals one of the values from list b... broer konijn Excel Worksheet Functions 7 June 14th 06 06:28 AM
Isolating months Brisbane Rob Excel Discussion (Misc queries) 5 March 15th 06 06:30 PM
Isolating a custom toolbar to a specific spreadsheet Gilgamesh Excel Discussion (Misc queries) 3 October 14th 05 01:30 PM


All times are GMT +1. The time now is 04:51 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"