+ Reply to Thread
Results 1 to 13 of 13

Turn 10106 in to 1st of JAN 2006, date wise I can't do it please h

  1. #1
    Adam
    Guest

    Turn 10106 in to 1st of JAN 2006, date wise I can't do it please h

    i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.

    nOT SURE HOW TO DO IT THANKS

    ADAM

  2. #2
    ewan7279
    Guest

    RE: Turn 10106 in to 1st of JAN 2006, date wise I can't do it please h

    Hi Adam,

    The only way I have been able to do this is by separating the input of the
    day, month and year data with hyphens ( - ) or backslashes ( / ) and changing
    the cell format thus: Format => Cells => Custom => Type dd mmmm yyyy.

    HTH

    Ewan

    "Adam" wrote:

    > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    >
    > nOT SURE HOW TO DO IT THANKS
    >
    > ADAM


  3. #3
    ewan7279
    Guest

    RE: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    Sorry,

    Should read dd mmm yyyy.

    Ewan

    "ewan7279" wrote:

    > Hi Adam,
    >
    > The only way I have been able to do this is by separating the input of the
    > day, month and year data with hyphens ( - ) or backslashes ( / ) and changing
    > the cell format thus: Format => Cells => Custom => Type dd mmmm yyyy.
    >
    > HTH
    >
    > Ewan
    >
    > "Adam" wrote:
    >
    > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >
    > > nOT SURE HOW TO DO IT THANKS
    > >
    > > ADAM


  4. #4
    Adam
    Guest

    RE: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANKS EWAN SEEMS A LITTLE STRANGE THAT EXCELL CAN'T DO THIS

    "ewan7279" wrote:

    > Sorry,
    >
    > Should read dd mmm yyyy.
    >
    > Ewan
    >
    > "ewan7279" wrote:
    >
    > > Hi Adam,
    > >
    > > The only way I have been able to do this is by separating the input of the
    > > day, month and year data with hyphens ( - ) or backslashes ( / ) and changing
    > > the cell format thus: Format => Cells => Custom => Type dd mmmm yyyy.
    > >
    > > HTH
    > >
    > > Ewan
    > >
    > > "Adam" wrote:
    > >
    > > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > > >
    > > > nOT SURE HOW TO DO IT THANKS
    > > >
    > > > ADAM


  5. #5
    Niek Otten
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it please h

    =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))

    But depending on what position you assume the month to be, you might have to
    switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    June 2006

    --
    Kind regards,

    Niek Otten

    "Adam" <Adam@discussions.microsoft.com> wrote in message
    news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    >
    > nOT SURE HOW TO DO IT THANKS
    >
    > ADAM




  6. #6
    Adam
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC 06
    SO I WOULD USE?

    SORRY NOT GREAT AT EXCEL

    "Niek Otten" wrote:

    > =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    >
    > But depending on what position you assume the month to be, you might have to
    > switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    > June 2006
    >
    > --
    > Kind regards,
    >
    > Niek Otten
    >
    > "Adam" <Adam@discussions.microsoft.com> wrote in message
    > news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >
    > > nOT SURE HOW TO DO IT THANKS
    > >
    > > ADAM

    >
    >
    >


  7. #7
    Adam
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC 06
    SO I WOULD USE?

    SORRY NOT GREAT AT EXCEL

    "Niek Otten" wrote:

    > =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    >
    > But depending on what position you assume the month to be, you might have to
    > switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    > June 2006
    >
    > --
    > Kind regards,
    >
    > Niek Otten
    >
    > "Adam" <Adam@discussions.microsoft.com> wrote in message
    > news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >
    > > nOT SURE HOW TO DO IT THANKS
    > >
    > > ADAM

    >
    >
    >


  8. #8
    Adam
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC 06
    SO I WOULD USE?

    SORRY NOT GREAT AT EXCEL


    "Niek Otten" wrote:

    > =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    >
    > But depending on what position you assume the month to be, you might have to
    > switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    > June 2006
    >
    > --
    > Kind regards,
    >
    > Niek Otten
    >
    > "Adam" <Adam@discussions.microsoft.com> wrote in message
    > news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >
    > > nOT SURE HOW TO DO IT THANKS
    > >
    > > ADAM

    >
    >
    >


  9. #9
    Adam
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC 06
    SO I WOULD USE?

    SORRY NOT GREAT AT EXCEL

    "Niek Otten" wrote:

    > =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    >
    > But depending on what position you assume the month to be, you might have to
    > switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    > June 2006
    >
    > --
    > Kind regards,
    >
    > Niek Otten
    >
    > "Adam" <Adam@discussions.microsoft.com> wrote in message
    > news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >
    > > nOT SURE HOW TO DO IT THANKS
    > >
    > > ADAM

    >
    >
    >


  10. #10
    Adam
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC 06
    SO I WOULD USE?

    SORRY NOT GREAT AT EXCEL


    "Niek Otten" wrote:

    > =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    >
    > But depending on what position you assume the month to be, you might have to
    > switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    > June 2006
    >
    > --
    > Kind regards,
    >
    > Niek Otten
    >
    > "Adam" <Adam@discussions.microsoft.com> wrote in message
    > news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >
    > > nOT SURE HOW TO DO IT THANKS
    > >
    > > ADAM

    >
    >
    >


  11. #11
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    use what nick said and format dd-mmm-yy this will make it 28-DEC-06. To make it the 28th DEC 06 can be done but is not worth the effort!

    regards


    Dav

  12. #12
    Niek Otten
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    =DATE(RIGHT(A1,2)+2000,MID(A1,LEN(A1)-3,2),LEFT(A1,LEN(A1)-4))

    --
    Kind regards,

    Niek Otten

    "Adam" <Adam@discussions.microsoft.com> wrote in message
    news:6A31560D-002E-483F-8A64-02C809B7EC6C@microsoft.com...
    > THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC
    > 06
    > SO I WOULD USE?
    >
    > SORRY NOT GREAT AT EXCEL
    >
    >
    > "Niek Otten" wrote:
    >
    >> =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    >>
    >> But depending on what position you assume the month to be, you might have
    >> to
    >> switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    >> June 2006
    >>
    >> --
    >> Kind regards,
    >>
    >> Niek Otten
    >>
    >> "Adam" <Adam@discussions.microsoft.com> wrote in message
    >> news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    >> > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    >> >
    >> > nOT SURE HOW TO DO IT THANKS
    >> >
    >> > ADAM

    >>
    >>
    >>




  13. #13
    Adam
    Guest

    Re: Turn 10106 in to 1st of JAN 2006, date wise I can't do it plea

    THANK YOU GUYS

    "Niek Otten" wrote:

    > =DATE(RIGHT(A1,2)+2000,MID(A1,LEN(A1)-3,2),LEFT(A1,LEN(A1)-4))
    >
    > --
    > Kind regards,
    >
    > Niek Otten
    >
    > "Adam" <Adam@discussions.microsoft.com> wrote in message
    > news:6A31560D-002E-483F-8A64-02C809B7EC6C@microsoft.com...
    > > THANKS NICK THAT'S REALLY HELPFULL I WANTED IT LIKE 281206 TO BE 28TH DEC
    > > 06
    > > SO I WOULD USE?
    > >
    > > SORRY NOT GREAT AT EXCEL
    > >
    > >
    > > "Niek Otten" wrote:
    > >
    > >> =DATE(RIGHT(A1,2)+2000,LEFT(A1,LEN(A1)-4),MID(A1,LEN(A1)-3,2))
    > >>
    > >> But depending on what position you assume the month to be, you might have
    > >> to
    > >> switch 2nd and 3rd argument. It is now set op so that 60306 means 3rd of
    > >> June 2006
    > >>
    > >> --
    > >> Kind regards,
    > >>
    > >> Niek Otten
    > >>
    > >> "Adam" <Adam@discussions.microsoft.com> wrote in message
    > >> news:A3DBD9E2-7B85-44F4-A145-EB741A7C7B0A@microsoft.com...
    > >> > i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
    > >> >
    > >> > nOT SURE HOW TO DO IT THANKS
    > >> >
    > >> > ADAM
    > >>
    > >>
    > >>

    >
    >
    >


+ 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