Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm using XL2003. For manufacturing purposes, products are stamped with a
serial number that includes the day of manufacture, represented by the day number, i.e. January 1st = 001, 1st February = 032 and so on. Each new year begins again at 001. Is there a quick way to convert this 3-digit day number to an actual date? Thanks in advance, Amanda |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nel post
*Birmangirl* ha scritto: I'm using XL2003. For manufacturing purposes, products are stamped with a serial number that includes the day of manufacture, represented by the day number, i.e. January 1st = 001, 1st February = 032 and so on. Each new year begins again at 001. Is there a quick way to convert this 3-digit day number to an actual date? Thanks in advance, Amanda Hi Amanda, =DATE(YEAR(TODAY()),1,VALUE(D14)) In D14 you have your 3 digits day. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nel post
*Franz Verga* ha scritto: Nel post *Birmangirl* ha scritto: I'm using XL2003. For manufacturing purposes, products are stamped with a serial number that includes the day of manufacture, represented by the day number, i.e. January 1st = 001, 1st February = 032 and so on. Each new year begins again at 001. Is there a quick way to convert this 3-digit day number to an actual date? Thanks in advance, Amanda Hi Amanda, =DATE(YEAR(TODAY()),1,VALUE(D14)) In D14 you have your 3 digits day. Because if you open next year the file with 2006 data, the dates would change, you can change the above formula n this way: =DATE(D12,1,VALUE(D14)) where in D12 you have to type 2006. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Ciao Franz - this works perfectly!
Amanda "Franz Verga" wrote: Nel post *Birmangirl* ha scritto: I'm using XL2003. For manufacturing purposes, products are stamped with a serial number that includes the day of manufacture, represented by the day number, i.e. January 1st = 001, 1st February = 032 and so on. Each new year begins again at 001. Is there a quick way to convert this 3-digit day number to an actual date? Thanks in advance, Amanda Hi Amanda, =DATE(YEAR(TODAY()),1,VALUE(D14)) In D14 you have your 3 digits day. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
shorter than my offering but it also works without the value, even if text
=DATE(YEAR(TODAY()),1,A1) -- Don Guillett SalesAid Software "Franz Verga" wrote in message ... Nel post *Birmangirl* ha scritto: I'm using XL2003. For manufacturing purposes, products are stamped with a serial number that includes the day of manufacture, represented by the day number, i.e. January 1st = 001, 1st February = 032 and so on. Each new year begins again at 001. Is there a quick way to convert this 3-digit day number to an actual date? Thanks in advance, Amanda Hi Amanda, =DATE(YEAR(TODAY()),1,VALUE(D14)) In D14 you have your 3 digits day. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nel post
*Don Guillett* ha scritto: shorter than my offering but it also works without the value, even if text =DATE(YEAR(TODAY()),1,A1) Yes, I didn't think that also the DATE function makes the conversion from text to value.. -- Ciao Franz Verga from Italy |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try this formula or a macro to do it for you.
=DATEVALUE(12&"/"&31&"/"&YEAR(TODAY()))-365+A1 -- Don Guillett SalesAid Software "Birmangirl" wrote in message ... I'm using XL2003. For manufacturing purposes, products are stamped with a serial number that includes the day of manufacture, represented by the day number, i.e. January 1st = 001, 1st February = 032 and so on. Each new year begins again at 001. Is there a quick way to convert this 3-digit day number to an actual date? Thanks in advance, Amanda |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
entering data using - between numbers without converting to date | Excel Discussion (Misc queries) | |||
Why are 1/2 my numbers imported as text and the rest as numbers? | Excel Discussion (Misc queries) | |||
converting text to negative numbers! | Excel Worksheet Functions | |||
converting numbers to text | New Users to Excel | |||
roundoff when converting text to numbers | Excel Worksheet Functions |