Create running totals selecting the field you want and SUM as the Type, and place something like:
// For Month to Date
{MyTable.MyDateField} in MonthToDate
If you had shared your financial dates, I would have given you an exact formula for that.
It's basically the same thing, but you need to determine the starting date, check out the datediff and dateadd functions.
You can cheat the start date with something like:
// Assumes a 6/1 start of year
if currentdate < date(year(currentdate),6,1) then
dateadd("YYYY",-1, date(year(currentdate),month(currentdate),1) )
else
date(year(currentdate),6,1)
Something like that...
-k
kai@informeddatadecisions.com