=DATEDIF(B14,B4,"m")

  • Thread starter Thread starter teeb
  • Start date Start date
T

teeb

I've used the formula =DATEDIF(B14,B4,"m") for calculating the number of
months between two date. Changing the m to a y does the number of
years.

How can I the number of quarter years? I've tried the logical Q to no
joy!

Also need to know the termly figure? ie How many 4 month segments (in
one year the value would be 3)

Any suggestion much appreciated
 
How about:

Quarters:

=DATEDIF(B14,B4,"m")/3


Or, if you only want whole quarters, rather than fractional quarters
(there's a pun in there somewhere):

=INT(DATEDIF(B14,B4,"m")/3)

For 4-month segments:

=DATEDIF(B14,B4,"m")/4
 

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

Back
Top