Apr 16, 2009 #1 sheely654 IS-IT--Management Jul 9, 2008 9 US I have status totals by groups example: sears full time 12 part time 22 jc penney full time 7 part time 5 In the footer I would like status totals full time 19 part time 27 I don't know how to sum a count...can you please help? Thanks
I have status totals by groups example: sears full time 12 part time 22 jc penney full time 7 part time 5 In the footer I would like status totals full time 19 part time 27 I don't know how to sum a count...can you please help? Thanks
Apr 16, 2009 #2 IanWaterman Programmer Jun 26, 2002 3,511 GB YOu can use two additional running totals. In the evaulate part select formula and add condtions which meet the full time and part time criteria. Ian Upvote 0 Downvote
YOu can use two additional running totals. In the evaulate part select formula and add condtions which meet the full time and part time criteria. Ian
Apr 16, 2009 #3 lbass Technical User Feb 9, 2002 32,816 US Or you could place a crosstab in the report footer that uses status as the row field, and count as the summary field. Or, you could alternatively use conditional formulas: if {table.status} = "Fulltime" then 1 Repeat for Parttime. Then place the formulas in the detail section and insert summaries (sums, NOT counts) on them at the grand total levels. -LB Upvote 0 Downvote
Or you could place a crosstab in the report footer that uses status as the row field, and count as the summary field. Or, you could alternatively use conditional formulas: if {table.status} = "Fulltime" then 1 Repeat for Parttime. Then place the formulas in the detail section and insert summaries (sums, NOT counts) on them at the grand total levels. -LB