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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by slickBT

  1. slickBT

    Running Count

    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...
  2. slickBT

    DateDiff detail/group problem

    bdreed35, Your solution worked for me, thank you. lbass, I am going to try out your suggestion as well, thanks.
  3. slickBT

    DateDiff detail/group problem

    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...

Part and Inventory Search

Back
Top