i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
nOT SURE HOW TO DO IT THANKS
ADAM
i'M TRYING TO FORMAT DATA LIKE 10106 INTO DATE 1ST JAN 2006.
nOT SURE HOW TO DO IT THANKS
ADAM
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
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
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
=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
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
>
>
>
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
>
>
>
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
>
>
>
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
>
>
>
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
>
>
>
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
=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
>>
>>
>>
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
> >>
> >>
> >>
>
>
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks