lbass, I tried your suggestion and it worked sort of. I did get the number I was looking for, but when I change my record selection it fudges up the other values in my report.
Going from this:
//New Construction
{PERMIT.TYPEOCC} = ["Single Family" , "Two Family" , "Multi-Family" , "Commercial" , "Industrial" , "Institutional" , "Other" , "Mobile Home" , "Recreational" , "Agricultural"]
and {PERMIT.MUNUNIT} = ["New Glasgow" , "Pictou" , "Stellarton" , "Trenton" , "Westville"]
and {PERMIT.DATEBLDG} = {?Date}
and {PERMIT.APP} = ["Conventional Building" , "Private Garage" , "Pre-MFGED Building"]
to this:
//New Construction
{PERMIT.TYPEOCC} = ["Single Family" , "Two Family" , "Multi-Family" , "Commercial" , "Industrial" , "Institutional" , "Other" , "Mobile Home" , "Recreational" , "Agricultural"]
and {PERMIT.MUNUNIT} = ["New Glasgow" , "Pictou" , "Stellarton" , "Trenton" , "Westville"]
and {PERMIT.DATEBLDG} in Date((Year(minimum({?date})), 01, 01) to Maximum({?date})
and {PERMIT.APP} = ["Conventional Building" , "Private Garage" , "Pre-MFGED Building"]
You can probably see how the data returned to the report now is not the same as what it was returning before, which means many of my summaries in this report (manual crosstab) don't get the correct value.
I guess it might end up boiling down to me going through the summaries and specifying that {PERMIT.DATEBLDG} = {?date} now that the record selection may need to be modified. Is there any way to avoid this, seeing as I have MANY fields that would require updating... Is there a way to select an idividual field and change it's record selection specifically?
Thanks for all your help.
Toxodont