View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
arno arno is offline
external usenet poster
 
Posts: 184
Default How should I get the # of quarters in a year.

Hi,

let's assume you have a date in B2, then the following formula will
give you the quarter based on the month of that date:

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

arno