Hi Susan,
So you would like to determine the dollar amount of sales for items over approximately 2 months, based on the 'Amount sold YTD' statistic? Is this correct? If not, then please indicate what type of calculation you are looking for.
If so, then you would have to determine what percentage of your fiscal year you are into (YTD is for the fiscal year), and multiply the amount by 61/365 (the percentage of the year for about 2 months worth of days). The FISCALSTART() function can determine the start date of your current fiscal year (as determined in the Edit/Defaults screen of GridView), and the YEARFRAC(start,end) function can determine the percentage between your fiscal start and TODAY().
YEARFRAC(FISCALSTART(),TODAY())
The formula for your 2 month sales, rounded to 0 decimal places:
ROUND( (61/365) * {Amt Sold YTD} / YEARFRAC( FISCALSTART() , TODAY() ) , 0)
_________________________
Regards,
Softrak Tech Support