Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default How to index teammembers within in a pool?

Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id 5_1, Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of the
selection.

Any ideas?


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default How to index teammembers within in a pool?

Don't follow what you're trying to accomplish.

Can't you make a simple datalist?
Names in Column A, ID number in adjacent row in Column B.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Arnie" wrote in message
bel.net...
Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id 5_1,

Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of the
selection.

Any ideas?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default How to index teammembers within in a pool?

Sorry,

Sure I can:

PlayerID Pool Name
1 1 John
2 1 Pete
3 2 Jill
4 2 Fred
5 2 Ginger
6 3 Tony
etc.

The result should be something like this:
PlayerID Pool Name Id
1 1 John 1_1
2 1 Pete 1_2
3 2 Jill 2_1
4 2 Fred 2_2
5 2 Ginger 2_3
6 3 Tony 3_1
etc.


(to make more clear what I'm trying to accomplish: I have a form that I want
to print with 2 golfscorecards on it. If the are 2 players in a pool/flight
then player 1_1 has marker 1_2, but if there are 3 players in a flight
player 2_1 has marker 2_2, player 2_2 has marker 2_3 and player 2_3 has
marker 2_1, etc. I want to sort out all the players and create a dataset
that is usefull to print the scorecards. Since the pools/flights are
variable it is difficult to find a way to print the scorecards.

Arnie

"Ragdyer" schreef in bericht
...
Don't follow what you're trying to accomplish.

Can't you make a simple datalist?
Names in Column A, ID number in adjacent row in Column B.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Arnie" wrote in message
bel.net...
Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team
has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id 5_1,

Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of
the
selection.

Any ideas?





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default How to index teammembers within in a pool?

Maybe it's because I don't play golf, but ... I don't have the slightest
idea what you're talking about.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Arnie" wrote in message
el.net...
Sorry,

Sure I can:

PlayerID Pool Name
1 1 John
2 1 Pete
3 2 Jill
4 2 Fred
5 2 Ginger
6 3 Tony
etc.

The result should be something like this:
PlayerID Pool Name Id
1 1 John 1_1
2 1 Pete 1_2
3 2 Jill 2_1
4 2 Fred 2_2
5 2 Ginger 2_3
6 3 Tony 3_1
etc.


(to make more clear what I'm trying to accomplish: I have a form that I
want to print with 2 golfscorecards on it. If the are 2 players in a
pool/flight then player 1_1 has marker 1_2, but if there are 3 players in
a flight player 2_1 has marker 2_2, player 2_2 has marker 2_3 and player
2_3 has marker 2_1, etc. I want to sort out all the players and create a
dataset that is usefull to print the scorecards. Since the pools/flights
are variable it is difficult to find a way to print the scorecards.

Arnie

"Ragdyer" schreef in bericht
...
Don't follow what you're trying to accomplish.

Can't you make a simple datalist?
Names in Column A, ID number in adjacent row in Column B.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Arnie" wrote in message
bel.net...
Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team
has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id 5_1,

Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of
the
selection.

Any ideas?







  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default How to index teammembers within in a pool?

Try this:

Pool numbers in the range B2:B7.

=B2&"_"&COUNTIF(B$2:B2,B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP


"Arnie" wrote in message
el.net...
Sorry,

Sure I can:

PlayerID Pool Name
1 1 John
2 1 Pete
3 2 Jill
4 2 Fred
5 2 Ginger
6 3 Tony
etc.

The result should be something like this:
PlayerID Pool Name Id
1 1 John 1_1
2 1 Pete 1_2
3 2 Jill 2_1
4 2 Fred 2_2
5 2 Ginger 2_3
6 3 Tony 3_1
etc.


(to make more clear what I'm trying to accomplish: I have a form that I
want to print with 2 golfscorecards on it. If the are 2 players in a
pool/flight then player 1_1 has marker 1_2, but if there are 3 players in
a flight player 2_1 has marker 2_2, player 2_2 has marker 2_3 and player
2_3 has marker 2_1, etc. I want to sort out all the players and create a
dataset that is usefull to print the scorecards. Since the pools/flights
are variable it is difficult to find a way to print the scorecards.

Arnie

"Ragdyer" schreef in bericht
...
Don't follow what you're trying to accomplish.

Can't you make a simple datalist?
Names in Column A, ID number in adjacent row in Column B.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Arnie" wrote in message
bel.net...
Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team
has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id 5_1,

Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of
the
selection.

Any ideas?









  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default How to index teammembers within in a pool?

Biff,

You're a genious! I didn't think it would be that easy.

RagDyer: maybe you should try it one day, it's a fun sport (and addictive)

Arnie
"T. Valko" schreef in bericht
...
Try this:

Pool numbers in the range B2:B7.

=B2&"_"&COUNTIF(B$2:B2,B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP


"Arnie" wrote in message
el.net...
Sorry,

Sure I can:

PlayerID Pool Name
1 1 John
2 1 Pete
3 2 Jill
4 2 Fred
5 2 Ginger
6 3 Tony
etc.

The result should be something like this:
PlayerID Pool Name Id
1 1 John 1_1
2 1 Pete 1_2
3 2 Jill 2_1
4 2 Fred 2_2
5 2 Ginger 2_3
6 3 Tony 3_1
etc.


(to make more clear what I'm trying to accomplish: I have a form that I
want to print with 2 golfscorecards on it. If the are 2 players in a
pool/flight then player 1_1 has marker 1_2, but if there are 3 players in
a flight player 2_1 has marker 2_2, player 2_2 has marker 2_3 and player
2_3 has marker 2_1, etc. I want to sort out all the players and create a
dataset that is usefull to print the scorecards. Since the pools/flights
are variable it is difficult to find a way to print the scorecards.

Arnie

"Ragdyer" schreef in bericht
...
Don't follow what you're trying to accomplish.

Can't you make a simple datalist?
Names in Column A, ID number in adjacent row in Column B.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit
!
---------------------------------------------------------------------------
"Arnie" wrote in message
bel.net...
Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team
has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id 5_1,
Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of
the
selection.

Any ideas?









  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default How to index teammembers within in a pool?

You're a genious!

Yeah, I know a thing or two about GOLF! Almost a scratch player!

Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Arnie" wrote in message
el.net...
Biff,

You're a genious! I didn't think it would be that easy.

RagDyer: maybe you should try it one day, it's a fun sport (and addictive)

Arnie
"T. Valko" schreef in bericht
...
Try this:

Pool numbers in the range B2:B7.

=B2&"_"&COUNTIF(B$2:B2,B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP


"Arnie" wrote in message
el.net...
Sorry,

Sure I can:

PlayerID Pool Name
1 1 John
2 1 Pete
3 2 Jill
4 2 Fred
5 2 Ginger
6 3 Tony
etc.

The result should be something like this:
PlayerID Pool Name Id
1 1 John 1_1
2 1 Pete 1_2
3 2 Jill 2_1
4 2 Fred 2_2
5 2 Ginger 2_3
6 3 Tony 3_1
etc.


(to make more clear what I'm trying to accomplish: I have a form that I
want to print with 2 golfscorecards on it. If the are 2 players in a
pool/flight then player 1_1 has marker 1_2, but if there are 3 players
in a flight player 2_1 has marker 2_2, player 2_2 has marker 2_3 and
player 2_3 has marker 2_1, etc. I want to sort out all the players and
create a dataset that is usefull to print the scorecards. Since the
pools/flights are variable it is difficult to find a way to print the
scorecards.

Arnie

"Ragdyer" schreef in bericht
...
Don't follow what you're trying to accomplish.

Can't you make a simple datalist?
Names in Column A, ID number in adjacent row in Column B.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit
!
---------------------------------------------------------------------------
"Arnie" wrote in message
bel.net...
Hi,

Here's what i'm trying to do:
I have abouth 50 players manualy divided over several teams. Each team
has
1-4 players. I want to give each player a unique identifier within the
teams. So player John in team 5 which consist 4 teammembers has id
5_1,
Pete
in the same team has id 5_2

I tried it with index, but the formula gives the value not te index of
the
selection.

Any ideas?











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
nascar pool Karl Excel Discussion (Misc queries) 2 December 28th 06 06:41 PM
football pool schedule Big Dukez Football Pool Excel Discussion (Misc queries) 1 August 1st 06 07:31 PM
Football pool pats2306 Excel Discussion (Misc queries) 0 April 6th 06 10:35 PM
Pool Draws (bracket) auststan69 Excel Worksheet Functions 1 March 12th 06 06:21 AM
Golf Pool FRR Excel Discussion (Misc queries) 1 May 7th 05 06:21 PM


All times are GMT +1. The time now is 12:45 AM.

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"