Hi Susan,

Sounds reasonable to do.

First calculate the number of months since April 1:
MONTH(TODAY()) - 4 + 1 (4 is the month of April, and add 1 to correctly calculate the number of months)

Or if you need to consider when this is printed in January 2013 and include the year:
YEARL(TODAY()) - 2012 + MONTH(TODAY()) - 3

Then do the division:
{Amt Sold YTD} / (YEARL(TODAY()) - 2012 + MONTH(TODAY()) - 3)

And you could use the FISCALSTART() function to determine the first day of the fiscal year (as defined in your GridView Defaults) to have a formula calculate the month and year instead of hard-coding 2012 and +4:

{Amt Sold YTD} / (YEARL(TODAY()) - YEARL(FISCALSTART()) + MONTH(TODAY()) - MONTH(FISCALSTART()) +1)
_________________________
Regards,
Softrak Tech Support