Custom Date format ie. 01.01.05 W1 (W1 is week 1)

F

Fred Smith

You could create a formula to display the date in format you want, eg:

=TEXT(TODAY(),"mm/dd/yy")&" W"&TEXT(WEEKNUM(TODAY()),"@")
 
Top