Malekmac,
I take it you are having a similar problem. The report that I was generating was a single line statement that summarised the number of products, the number of cases and the number of claims for each haulier. The problem I had was that I could get it to sum everything else apart from the number of claims. What I was getting was for each sku of a claim it was counting it as a fresh claim. What I had to do was within the hidden part of the report, the part used to calculate the report, next to the field for claim number I set up a Text box with the value of =1. I then set the Running sum Property to over group. This meant that for each fresh claim for a haulier the number increased by one. I then put together a string wich was to be the actual report and pulled the last value of the field into it. The actual string looks like the following:-
="Summary for " & [Haulier] & " =" & Count(*) & " " & IIf(Count(*)=1,"SKU","SKU's") & " with a total number of cases equalling " & Sum([QTY]) & " across " & [rptClaimCount] & IIf([rptClaimCount]=1," Claim"," Claims")
Hope that helps
|