Using dates in formulas

G

Guest

I have a column of dates. I need to write a formula that will check the date
and the result will be the correct quarter. How do I write the formula?

6/25/05 Q2
1/15/05 Q1
12/4/05 Q4
9/30/05 Q3
3/25/05 Q1

Thanks in advance,
Cheryl
 
R

Ron Rosenfeld

I have a column of dates. I need to write a formula that will check the date
and the result will be the correct quarter. How do I write the formula?

6/25/05 Q2
1/15/05 Q1
12/4/05 Q4
9/30/05 Q3
3/25/05 Q1

Thanks in advance,
Cheryl


=INT((MONTH(A1)-1)/3)+1

and format as:

Format/Cells/Number Custom Type: \Q0

or, if you don't mind the result being TEXT, you could use:

=TEXT(INT((MONTH(A1)-1)/3)+1,"\Q0")


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top