Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fomula ignores fist line 1

Status
Not open for further replies.

rewob65

Technical User
Nov 13, 2004
110
GB
I am using this formula to obtain the total of a number of fields:-


WhilePrintingRecords;
NumberVar Prior;
NumberVar LYS;

if {@Count} >0 //which indicates a first record for this customer
then LYS := {@Soiled Day 2} + Prior;
Prior := LYS//store the current count to compare with next record LYS

It works fine except for the first record, I guess this must mean that my record is calulated before the @count function. Any ideas to add in the first record.
 
I am not sure this will work

you could declare the varable before you start the loop

e.g.
Code:
NumberVar Prior := 1;
NumberVar LYS;


WhilePrintingRecords;
if {@Count} >0 //which indicates a first record for this customer
   then LYS := {@Soiled Day 2} + Prior;
Prior := LYS//store the current count to compare with next  record LYS


Mo
 
Try doing the same thing using running totals. Much quicker once you get the hang of them.

Right-click on a field and choose Insert to get a choice of Running Total or Summary. Or else use the Field Explorer, the icon that is a grid-like box, to add running totals.

[yinyang] Madawc Williams (East Anglia, UK) [yinyang]
[yinyang] Windows XP & Crystal 10 [yinyang]
 
You could try:

WhilePrintingRecords;
NumberVar Prior;
NumberVar LYS;

if onfirstrecord or
{@Count} >0 //which indicates a first record for this customer
then LYS := {@Soiled Day 2} + Prior;
Prior := LYS//store the current count to compare with next record LYS

If none of the above solutions work, please provide the contents of both of your nested formulas (which you should always do when posting).

-LB
 
Ibass your formula did work. I realise why you want to see the nested formula, it is also a calucaltion of a calculation so I thought it would noly confuse, since what I think is a complex question is seen as easy be most adivsers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top