Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 50
Default increase serial number

I have to maintain our representative database & send it to our head office
lilke
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 2 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 3 13/11/2007 HTYVD7475K S.N.Bose 0312
continued to end of data.
Now I have to keep month-wise record according to Rep ID. Now I want auto
increase serial no. in respect of Rep. ID i.e
1) Sl No. will be continue if Rep. Id is same. example as below -
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 1 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 2 13/11/2007 HTYVD7475K S.N.Bose 0312
is it possible.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,073
Default increase serial number

On Jan 4, 10:17 pm, Montu wrote:
I have to maintain our representative database & send it to our head office
lilke
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 2 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 3 13/11/2007 HTYVD7475K S.N.Bose 0312
continued to end of data.
Now I have to keep month-wise record according to Rep ID. Now I want auto
increase serial no. in respect of Rep. ID i.e
1) Sl No. will be continue if Rep. Id is same. example as below -
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 1 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 2 13/11/2007 HTYVD7475K S.N.Bose 0312
is it possible.


In A2...

=COUNTIF(E$2:E2,E2)

filled down to bottom-most row with data.

Ken Johnson
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,073
Default increase serial number

On Jan 4, 10:17 pm, Montu wrote:
I have to maintain our representative database & send it to our head office
lilke
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 2 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 3 13/11/2007 HTYVD7475K S.N.Bose 0312
continued to end of data.
Now I have to keep month-wise record according to Rep ID. Now I want auto
increase serial no. in respect of Rep. ID i.e
1) Sl No. will be continue if Rep. Id is same. example as below -
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 1 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 2 13/11/2007 HTYVD7475K S.N.Bose 0312
is it possible.


=COUNTIF(E$2:E2,E2) in A2 then filled down to bottom-most row with
data.

Ken Johnson
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 50
Default increase serial number

Thank you, it's working good, wish you Happy New Year

"Ken Johnson" wrote:

On Jan 4, 10:17 pm, Montu wrote:
I have to maintain our representative database & send it to our head office
lilke
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 2 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 3 13/11/2007 HTYVD7475K S.N.Bose 0312
continued to end of data.
Now I have to keep month-wise record according to Rep ID. Now I want auto
increase serial no. in respect of Rep. ID i.e
1) Sl No. will be continue if Rep. Id is same. example as below -
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 1 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 2 13/11/2007 HTYVD7475K S.N.Bose 0312
is it possible.


=COUNTIF(E$2:E2,E2) in A2 then filled down to bottom-most row with
data.

Ken Johnson

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,073
Default increase serial number

On Jan 5, 4:11 pm, Montu wrote:
Thank you, it's working good, wish you Happy New Year

"Ken Johnson" wrote:
On Jan 4, 10:17 pm, Montu wrote:
I have to maintain our representative database & send it to our head office
lilke
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 2 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 3 13/11/2007 HTYVD7475K S.N.Bose 0312
continued to end of data.
Now I have to keep month-wise record according to Rep ID. Now I want auto
increase serial no. in respect of Rep. ID i.e
1) Sl No. will be continue if Rep. Id is same. example as below -
A B C D
E
1 Sl No. Recp. Dt PAN No. Applicant Name Rep. Id
2. 1 11/11/2007 ABCDE1234F A.K.Barman 0312
3. 1 12/11/2007 GHJBN5826L U.K.Ghosh 0256
4. 2 13/11/2007 HTYVD7475K S.N.Bose 0312
is it possible.


=COUNTIF(E$2:E2,E2) in A2 then filled down to bottom-most row with
data.


Ken Johnson


Happy New Year!
Thanks for the feedback.

Ken Johnson
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
time serial number Bob Gotti Excel Discussion (Misc queries) 8 November 6th 07 08:43 PM
Number in cell increase with increase in font size. Value increases with increase in font.[_2_] Excel Discussion (Misc queries) 2 August 9th 07 01:58 PM
Formula for serial number shaji Excel Discussion (Misc queries) 6 June 25th 07 01:22 PM
serial number decode chiuinggum Excel Worksheet Functions 6 June 13th 06 09:15 AM
generate serial number john douglass Excel Worksheet Functions 0 November 5th 04 10:49 PM


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