Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am not so great on formulas and am trying to set up a numbering system for
documents Each reference comprises of a 3 letter reference (abbreviated form of document types) plus a number from 1000 onwards Eg ABC1000 onwards IDAS1000 onwards QCS1000 onwards Row A would be the header row and there are 10 abbreviated departments Each time I wanted to add a doc to the department I would need to choose next sequential number for that dep Is there anyone who has any ideas re this? thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Let's say you have ABC1000 in cell A2. Sequential formula is:
=LEFT(A2,3)&VALUE(MID(A2,4,255))+1 Is this what you were looking for? -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "RitaK" wrote: I am not so great on formulas and am trying to set up a numbering system for documents Each reference comprises of a 3 letter reference (abbreviated form of document types) plus a number from 1000 onwards Eg ABC1000 onwards IDAS1000 onwards QCS1000 onwards Row A would be the header row and there are 10 abbreviated departments Each time I wanted to add a doc to the department I would need to choose next sequential number for that dep Is there anyone who has any ideas re this? thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Very easy if you use two columns. Say in A1 thru B10 we have something like:
abc 999 def 999 ghi 999 jkl 999 mno 999 opr 999 stu 999 vwx 999 yza 999 bcd 999 Column A has the codes. Column B has one less than the starting value. In B11 enter the following array formula: =IF(A11="","",MAX(IF($A$1:A10=A11,$B$1:B10))+1) It MUST be entered with CNTRL-SHFT-ENTER rather than just the ENTER key. If you enter it improperly you will see #VALUE! Copy B11 on down the column. Now if you enter codes in column A from A11 on down, column B will automatically pick the next highest namber for that code. For example: abc 999 def 999 ghi 999 jkl 999 mno 999 opr 999 stu 999 vwx 999 yza 999 bcd 999 opr 1000 opr 1001 opr 1002 stu 1000 stu 1001 -- Gary''s Student - gsnu200901 "RitaK" wrote: I am not so great on formulas and am trying to set up a numbering system for documents Each reference comprises of a 3 letter reference (abbreviated form of document types) plus a number from 1000 onwards Eg ABC1000 onwards IDAS1000 onwards QCS1000 onwards Row A would be the header row and there are 10 abbreviated departments Each time I wanted to add a doc to the department I would need to choose next sequential number for that dep Is there anyone who has any ideas re this? thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
numbering system | Excel Worksheet Functions | |||
how do I increment a numbering system in excel | Excel Discussion (Misc queries) | |||
Auto Numbering System | Excel Worksheet Functions | |||
How can I keep my numbering system consecutive when I sort? | Excel Discussion (Misc queries) | |||
How do I set up an automated numbering system For my "Invoice Num | Excel Worksheet Functions |