I’m trying to create a report for an Emergency Food Program that counts families with Adults Only, Elderly Only, Adults/Elderly, Adults/Children, Adults/Elderly/Children.
My query creates for each month’s visits records that show fam_id, client_id and dob.
I’ve done a report that groups families and counts on the detail line 1 based on dob for adult. elderly and child. On the family group level I have functions such as: Adult only
IF Sum ({@If_Adult}, {@Family}) > 0 AND ISNull(Sum ({@If_Senior}, {@Family})) AND ISNULL(Sum ({@If_Child}, {@Family})) THEN 1
This displays fine on the family footer. Unfortunately, there doesn’t seem to be any way to sum these for the report summary. I’m used to R&R where this would be easy. What am I missing?
Bob Hagan
My query creates for each month’s visits records that show fam_id, client_id and dob.
I’ve done a report that groups families and counts on the detail line 1 based on dob for adult. elderly and child. On the family group level I have functions such as: Adult only
IF Sum ({@If_Adult}, {@Family}) > 0 AND ISNull(Sum ({@If_Senior}, {@Family})) AND ISNULL(Sum ({@If_Child}, {@Family})) THEN 1
This displays fine on the family footer. Unfortunately, there doesn’t seem to be any way to sum these for the report summary. I’m used to R&R where this would be easy. What am I missing?
Bob Hagan