+ Reply to Thread
Results 1 to 7 of 7

serial number decode

Hybrid View

Guest serial number decode 06-12-2006, 06:35 AM
Guest RE: serial number decode 06-12-2006, 08:10 AM
Guest RE: serial number decode 06-12-2006, 09:20 AM
Guest RE: serial number decode 06-12-2006, 10:15 AM
Guest RE: serial number decode 06-13-2006, 01:45 AM
  1. #1
    chiuinggum
    Guest

    serial number decode

    i have a month code table.

    A or B denote January
    C or D denote Febuary and so on until Dec.

    How can I decode a list?

  2. #2
    Allllen
    Guest

    RE: serial number decode

    In the same way as you coded it: with a reverse table

    So for table
    A or B Jan
    B or C Feb
    D or E Mar

    Just make another that says
    Jan A or B
    Feb C or D
    Mar E or F

    If you want it to say which between A and B, you will have to tell us and
    Excel what the difference between A and B is.


    --
    Allllen


    "chiuinggum" wrote:

    > i have a month code table.
    >
    > A or B denote January
    > C or D denote Febuary and so on until Dec.
    >
    > How can I decode a list?


  3. #3
    chiuinggum
    Guest

    RE: serial number decode

    But my data is in alphabet

    "Allllen" wrote:

    > In the same way as you coded it: with a reverse table
    >
    > So for table
    > A or B Jan
    > B or C Feb
    > D or E Mar
    >
    > Just make another that says
    > Jan A or B
    > Feb C or D
    > Mar E or F
    >
    > If you want it to say which between A and B, you will have to tell us and
    > Excel what the difference between A and B is.
    >
    >
    > --
    > Allllen
    >
    >
    > "chiuinggum" wrote:
    >
    > > i have a month code table.
    > >
    > > A or B denote January
    > > C or D denote Febuary and so on until Dec.
    > >
    > > How can I decode a list?


  4. #4
    Marcelo
    Guest

    RE: serial number decode

    Hi, do you have a single column with the codes? and you would like to have in
    another column the corresponding month?

    eg:
    A Jan
    B Jan
    D Feb
    E Mar
    F Mar
    C Feb

    If you, so create a table like

    Col A Col B
    A Jan
    B Jan
    C Feb
    D Mar
    E Mar
    F Apr
    G Apr
    H May
    etc

    and use a Vlookup to find the corresp month for each code.

    hope this helps
    regards from Brazil
    Marcelo

    "chiuinggum" escreveu:

    > But my data is in alphabet
    >
    > "Allllen" wrote:
    >
    > > In the same way as you coded it: with a reverse table
    > >
    > > So for table
    > > A or B Jan
    > > B or C Feb
    > > D or E Mar
    > >
    > > Just make another that says
    > > Jan A or B
    > > Feb C or D
    > > Mar E or F
    > >
    > > If you want it to say which between A and B, you will have to tell us and
    > > Excel what the difference between A and B is.
    > >
    > >
    > > --
    > > Allllen
    > >
    > >
    > > "chiuinggum" wrote:
    > >
    > > > i have a month code table.
    > > >
    > > > A or B denote January
    > > > C or D denote Febuary and so on until Dec.
    > > >
    > > > How can I decode a list?


  5. #5
    chiuinggum
    Guest

    RE: serial number decode

    i just did that. i thought there was an easier method.

    "Marcelo" wrote:

    > Hi, do you have a single column with the codes? and you would like to have in
    > another column the corresponding month?
    >
    > eg:
    > A Jan
    > B Jan
    > D Feb
    > E Mar
    > F Mar
    > C Feb
    >
    > If you, so create a table like
    >
    > Col A Col B
    > A Jan
    > B Jan
    > C Feb
    > D Mar
    > E Mar
    > F Apr
    > G Apr
    > H May
    > etc
    >
    > and use a Vlookup to find the corresp month for each code.
    >
    > hope this helps
    > regards from Brazil
    > Marcelo
    >
    > "chiuinggum" escreveu:
    >
    > > But my data is in alphabet
    > >
    > > "Allllen" wrote:
    > >
    > > > In the same way as you coded it: with a reverse table
    > > >
    > > > So for table
    > > > A or B Jan
    > > > B or C Feb
    > > > D or E Mar
    > > >
    > > > Just make another that says
    > > > Jan A or B
    > > > Feb C or D
    > > > Mar E or F
    > > >
    > > > If you want it to say which between A and B, you will have to tell us and
    > > > Excel what the difference between A and B is.
    > > >
    > > >
    > > > --
    > > > Allllen
    > > >
    > > >
    > > > "chiuinggum" wrote:
    > > >
    > > > > i have a month code table.
    > > > >
    > > > > A or B denote January
    > > > > C or D denote Febuary and so on until Dec.
    > > > >
    > > > > How can I decode a list?


  6. #6
    Pete_UK
    Guest

    Re: serial number decode

    If you have a letter in cell A1, this formula will show the month by
    calculation (i.e. no need for a separate table):

    =IF(A1="","",VALUE("1/"&INT((CODE(UPPER(A1))-65)/2)+1&"/2006"))

    You can copy the formula down. It will recognise "A" and "a" through to
    X. If the cell in column A is blank it will show a blank. If column A
    has Y or Z or a number, then you will get #VALUE.

    Hope this helps.

    Pete

    chiuinggum wrote:
    > i just did that. i thought there was an easier method.
    >
    > "Marcelo" wrote:
    >
    > > Hi, do you have a single column with the codes? and you would like to have in
    > > another column the corresponding month?
    > >
    > > eg:
    > > A Jan
    > > B Jan
    > > D Feb
    > > E Mar
    > > F Mar
    > > C Feb
    > >
    > > If you, so create a table like
    > >
    > > Col A Col B
    > > A Jan
    > > B Jan
    > > C Feb
    > > D Mar
    > > E Mar
    > > F Apr
    > > G Apr
    > > H May
    > > etc
    > >
    > > and use a Vlookup to find the corresp month for each code.
    > >
    > > hope this helps
    > > regards from Brazil
    > > Marcelo
    > >
    > > "chiuinggum" escreveu:
    > >
    > > > But my data is in alphabet
    > > >
    > > > "Allllen" wrote:
    > > >
    > > > > In the same way as you coded it: with a reverse table
    > > > >
    > > > > So for table
    > > > > A or B Jan
    > > > > B or C Feb
    > > > > D or E Mar
    > > > >
    > > > > Just make another that says
    > > > > Jan A or B
    > > > > Feb C or D
    > > > > Mar E or F
    > > > >
    > > > > If you want it to say which between A and B, you will have to tell us and
    > > > > Excel what the difference between A and B is.
    > > > >
    > > > >
    > > > > --
    > > > > Allllen
    > > > >
    > > > >
    > > > > "chiuinggum" wrote:
    > > > >
    > > > > > i have a month code table.
    > > > > >
    > > > > > A or B denote January
    > > > > > C or D denote Febuary and so on until Dec.
    > > > > >
    > > > > > How can I decode a list?



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1