R
Rick S.
I am using this formula from Chip Pearson's web site.
'======
=RIGHT(YEAR(A1),2)&TEXT(A1-DATE(YEAR(A1),1,0),"000")
'======
Which will take a date "04/18/08" and display it as "08109".
"08" is the year while "109" is the day of the year.
1. I need to strip the leading zero's
2. How can I make a column convert a date to this format when ever a date is
entered?
'======
=RIGHT(YEAR(A1),2)&TEXT(A1-DATE(YEAR(A1),1,0),"000")
'======
Which will take a date "04/18/08" and display it as "08109".
"08" is the year while "109" is the day of the year.
1. I need to strip the leading zero's
2. How can I make a column convert a date to this format when ever a date is
entered?