Focal Point
COUNT NO. OF RECORDS

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

January 20, 2006, 06:56 AM
Anubha Saini
COUNT NO. OF RECORDS
How can we count total no. of records returned by a query

Also how can create reports having union of tables in dev studio report painter

can anyone help us
January 20, 2006, 10:00 AM
susannah
use the &LINES variable
TABLE FILE CAR
SUM SALES
BY CAR
IF COUNTRY IS ...
END
-RUN
-SET &HOWMANY = &LINES ;
the variable &LINES tells you how many records are in the extract.
(see mickey's post below..excellent point)

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




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
January 20, 2006, 10:00 AM
Tony A
For your first question use the find function above and enter RECORDS.

For the second one, again, use the find function above and enter UNION.

To save going over and over these questions it is always prudent to try and use the find function first. There is plenty of information out there in the Forum already, you just have to find it Smiler

Would it beneficial for you to go on a course? Contact your local support people for info - no I'm not an IB employee, I just think that you would benefit greatly by attending a training course.



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
January 20, 2006, 10:35 AM
mgrackin
There are actually TWO &variables that give you different numbers depending on the verb (SUM or PRINT) that is used.

Try the following:

TABLE FILE CAR
SUM RCOST DCOST
BY COUNTRY
END
-RUN
-TYPE RECORDS = &RECORDS AND LINES = &LINES

&RECORDS = 18 because there were 18 records pulled from the CAR database for this request. However, &LINES = 5 because there are five lines of data shown on the report. This is due to the usage of the SUM verb.

Choose whichever one meets your need.


Thanks!

Mickey

FOCUS/WebFOCUS 1990 - 2011