The heading says "quarters to months"
Your message says "months in to quarters"
Which do you want??
To turn a month into a quarter, you could use:
=INT((MONTH(date)-1)/3)+1
if the first quarter is Jan, Feb or Mar
--ron
For example, one could array-enter the following formula in a three-cell horizontal array, and it would give
the months in each quarter -- one per cell:
=CHOOSE(Qtr,{"Jan","Feb","Mar"},{"Apr","May","Jun"},{"Jul","Aug","Sep"},{"Oct","Nov","Dec"})
One would have to ensure that Qtr is 1-4. Obviously, one could have different kinds of output using the same
principal, including real dates.
--ron
>But if he has only the quarter in which an event occurred, and he wants the SPECIFIC month,
>that's been lost. That was my point.
OIC. I agree.
--ron