View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Populate year, month and quarter from entered date

Try these in b1,c1 & d1 respectively

=TEXT(A1,"mm")
=INT((MONTH(A1)-1)/3)+1
=TEXT(A1,"yyyy")

Mike

"Vic" wrote:

A1 = 1/23/2009 date format
I need B1 to show the month 01, C1 to show quarter Q1 and D1 to show the
year 2009.
How do I do this automatically?