The selection to insert subtotals/totals is available when I use logic like
if month(date({Care.Date})) = 4 and year(date({Care.Date})) = 2006 then {Time.Hours}
It is NOT selectable when I use
whileprintingrecords ; numbervar mStart ; numbervar yStart;
if month(date({Care.Date})) = mStart and year(date({Care.Date})) = yStart then {Time.Hours}
Do I need to "manually" create subtotals and totals in the second method?
if month(date({Care.Date})) = 4 and year(date({Care.Date})) = 2006 then {Time.Hours}
It is NOT selectable when I use
whileprintingrecords ; numbervar mStart ; numbervar yStart;
if month(date({Care.Date})) = mStart and year(date({Care.Date})) = yStart then {Time.Hours}
Do I need to "manually" create subtotals and totals in the second method?