I need to create a running count for each status type in a group like the following. The Count Column is what I need. I have tried to do this but have failed thus far. Can someone help me out with this?
Defect Status Days Count
8968 Asmbly Test Failed 0.15 1
8968 Asmbly...
I am using the following to determine the interval between the current record and the previous record in my report.
WhilePrintingRecords;
NumberVar Counter := Counter + 1;
NumberVar Diff :=
If Counter = 1
Then Diff := 0
Else Diff := DateDiff('s',Previous({@TimeStamp}),{@TimeStamp});
This...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.