G
Guest
I need the count the number of entries in each grouping:
This is my data:
CHPSN CHDOCO EXTCOST
17540678 60117419 40.44
17540678 60117419 40.44
17540678 60117419 40.44
17540693 60119216 24.56
17540693 60119216 24.56
17602258 60132016 64
17602258 60132016 64
17602338 60135398 0
I want to create a new field called NewFieldDups that will assign a number
to each record. My data should look this this when complete:
CHPSN CHDOCO EXTCOST NewFieldDups
17540678 60117419 40.44 1
17540678 60117419 40.44 2
17540678 60117419 40.44 3
17540693 60119216 24.56 1
17540693 60119216 24.56 2
17602258 60132016 64 1
17602258 60132016 64 2
17602338 60135398 0 1
Thanks.
This is my data:
CHPSN CHDOCO EXTCOST
17540678 60117419 40.44
17540678 60117419 40.44
17540678 60117419 40.44
17540693 60119216 24.56
17540693 60119216 24.56
17602258 60132016 64
17602258 60132016 64
17602338 60135398 0
I want to create a new field called NewFieldDups that will assign a number
to each record. My data should look this this when complete:
CHPSN CHDOCO EXTCOST NewFieldDups
17540678 60117419 40.44 1
17540678 60117419 40.44 2
17540678 60117419 40.44 3
17540693 60119216 24.56 1
17540693 60119216 24.56 2
17602258 60132016 64 1
17602258 60132016 64 2
17602338 60135398 0 1
Thanks.