You can use the NEXT() to do a comparison inside a Running Total.
What I mean by the last row is that it never has a next value to compare to so it will never be withing the 56 days. Unless you want all details suppressed or if you want both rows that have < 56 days shown.
Group on the Company Name
Create a RT as "DayCount"
Field to Summarize=Comapny Name
Type of Summary= DistinctCount
Evaluate=Use a Formula
next(table.companyname)=table.companyname and
datediff('d',table.date,next(table.date))<56
Reset=On change of group (company name group)
Place on GF1 you will see the value of 1 when there is at least one row that meets your 56 day event
Edited by DBlank - 02 Mar 2010 at 11:40am