Thank you, Albert. I could try that.  But this should work too and I have 
others similar that do work.  I can't figure out why not this one.I tried 
caching pages and that didn't make a difference.I tried changing from 1 pass to 
2 pass and no change.  
I don't know what either of those things actually do.

I never used "group by" before.  
Patti
      From: Albert Berry <[email protected]>
 To: [email protected] 
 Sent: Monday, February 11, 2019 1:09 PM
 Subject: Re: [RBASE-L] - Problem with a summary report
   
With reports such as you describe, I usually create a temp table and just print 
it as detail. 

Create temp table tAgeSummaries (titles etc. Age_Range TEXT (12), Range_Count 
REAL
CREATE VARIABLES for the titles such as .vReptTitle, .vRptTitel2 …

INSERT INTO tAgeSummaries (RptTitle, Title2, Age_Range, Range_count) +
  SELECT .vRptTitle, .vTitle2, Age_Range, COUNT(*) group by  …


SELECT <age_range> SUM/COUNT 

> On Feb 11, 2019, at 10:44 AM, 'Patti Jakusz' via RBASE-L 
> <[email protected]> wrote:
> 
> <SummRpt0.docx>

-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

   

-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to