Focal Point
Running Total

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

April 04, 2007, 05:38 PM
gregson06
Running Total
Can anyone point me in the right direction? I am trying to do a running count/total for a list of items that will reset back to 1 after each group. For example. If I have a list of cars by country, I would like to list each alphabetically but to start from 1 through n for each list.

Each car would be listed like:


1 Mazda CX-9 2007
2 Nissan wb 2007
3 Subaru Outback 2006

Then for the next list/group it would begin again:

1 Buick Skylark 1980
2 Chevrolet Truck 2005
3 Ford GT 2005

So far I can only get the list to count in one direction using a
DEFINE
CNTR/I6 WITH ID = CNTR+1;

But I can't figure out how to get it to reset back to 1 after each grouping. Has anyone done anything like this?
April 04, 2007, 06:39 PM
susannah
simplest answer, Greg ...
Its all about the word LAST
lets assume your file is in COUNTRY order, the order you want to print ...
DEFINE FILE CAR
CNTR/I5 WITH ID = IF COUNTRY NE LAST COUNTRY THEN 1 ELSE 1 + LAST CNTR;
END




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
April 04, 2007, 06:57 PM
Darin Lee
But that assumes that your records are already sorted in COUNTRY order.


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
April 04, 2007, 08:33 PM
Francis Mariani
What about LIST:

TABLE FILE CAR
LIST
CAR
BY COUNTRY
BY CAR
END



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
April 05, 2007, 07:00 AM
Danny-SRL
Francis,
One BY too many.
TABLE FILE CAR
LIST
CAR
BY COUNTRY
END

Greg,
When you use LIST, the numbering restarts automatically when the value of the OUTERMOST BY changes.


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

April 05, 2007, 09:39 AM
gregson06
That works perfectly, susannah, thanks!

I have tried LIST before and that works (which can be a simple solution for anyone to try out) however I wasn't able to get rid of the "LIST" heading since this is a custom column. I did some searches on the forum for that and I heard that it is impossible to remove it without having to hold the file again and re-PRINT it (too many steps). But this takes care of it just fine. Unless someone can figure out how to supress the LIST header Wink
April 05, 2007, 04:22 PM
Danny-SRL
Greg,
Here is your solution!
TABLE FILE CAR
BY COUNTRY
RANKED AS GREG BY CAR
END

Simple and elegant.


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF