Focal Point
Counting Records

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5451066751

March 07, 2006, 08:47 AM
sludge
Counting Records
Does anyone have an easy way of counting rows in a report or a report section?
I'd appreciate the help.
Thanks.
March 07, 2006, 09:06 AM
mgrackin
Can you give us an example of how you are trying to present this count? In a SUBFOOT? In the FOOTING or HEADING? As a rolling total column? This will help us give you better assistance.


Thanks!

Mickey

FOCUS/WebFOCUS 1990 - 2011
March 07, 2006, 09:13 AM
sludge
The report is broken into segments. I'm trying to add a count in the subfooter and footer of the report to count the number of records in each given segment, then a final grand total.
March 07, 2006, 09:27 AM
Leah
This is one method you can use:

SET STYLEMODE = FIXED
TABLE FILE CAR
COUNT MODEL NOPRINT
BY COUNTRY
PRINT MODEL SEATS
BY COUNTRY
ON COUNTRY RECAP
CARCOUNT/I5 = C1;
ON COUNTRY SUBFOOT
" "
"COUNT BY COUNTRY IS ON TABLE SUMMARIZE AND SUBFOOT
" "
"TOTAL COUNT IS ON TABLE NOTOTAL
END


Leah
March 07, 2006, 09:29 AM
Leah
"COUNT BY COUNTRY IS ?CARCOUNT"
ON TABLE SUMMARIZE AND SUBFOOT
" "
"TOTAL COUNT IS ?C1"
ON TABLE NOTOTAL
END

Addendum the system doesn't like the less than spot marker. Replace the '?' with the less than symbol '<'


Leah
March 07, 2006, 10:11 AM
ET
Try this:

DEFINE FILE CAR
CARCNT/I4 WITH CAR =1;
END
TABLE FILE CAR
PRINT CAR CARCNT NOPRINT
BY COUNTRY UNDER-LINE
ON COUNTRY SUBFOOT
"TOTAL RECORDS FOr THIS CAR < ST.CARCNT < /1"

ON TABLE SUBFOOT

"TOTAL RECORDS ON REPORT < TOT.CARCNT"


IF COUNTRY EQ ENGLAND OR ITALY
END



COUNTRY CAR
------- ---
ENGLAND JAGUAR
JENSEN
TRIUMPH
TOTAL RECORDS FOR THIS CAR 3

----------------------------
ITALY ALFA ROMEO
MASERATI
TOTAL RECORDS FOR THIS CAR 2

----------------------------
TOTAL RECORDS ON REPORT 5

This message has been edited. Last edited by: ET,


FOCUS 7.6 MVS PDF,HTML,EXCEL
March 13, 2006, 11:08 AM
Kerry
Hi sludge,

Has this issue been resolved? Did other users' suggestions help you?

I ran some search on Focal Point and came across the following old topics which may be of interest as well:

COUNT NO. OF RECORDS

row count

Hope this helps. Big Grin

Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
March 13, 2006, 12:31 PM
sludge
Thanks for all the suggestions. I will let you know the result when I am finally able to get back to it.