P
psandrew
In the group footer I am trying to count the number of records in the report
without counting records with duplicate data in the summary field. Here is
the basic report structure with grouping that I have:
Area: Plot: Part: Quantity:
Osborn 1 NE 10
NW 5
E 15
Total For Osborn Plot 1: 30
3 W 25
SE 20
Total For Osborn Plot 2: 40
Total For Osborn Area (in 2 Plots): 70
.......... The expression in the parenthesis is what I am having problems
with; instead of counting two unique plots, it currently counts the total
number of records including duplicates, with non-null entries in the Plot
field. This gives me the result of : ..."(in 5 Plots)". I have attempted to
solve this by trying different combinations of the hide duplicates and the
running sum options in the footer text box's design properties window but
with no change. The corresponding portion of the control source is: ... & "
(" & Count(*) & " " & IIf(Count(*)=1,"Plot","Plots") & ")" .
I would really appreciate a solution for this. thanks a lot
without counting records with duplicate data in the summary field. Here is
the basic report structure with grouping that I have:
Area: Plot: Part: Quantity:
Osborn 1 NE 10
NW 5
E 15
Total For Osborn Plot 1: 30
3 W 25
SE 20
Total For Osborn Plot 2: 40
Total For Osborn Area (in 2 Plots): 70
.......... The expression in the parenthesis is what I am having problems
with; instead of counting two unique plots, it currently counts the total
number of records including duplicates, with non-null entries in the Plot
field. This gives me the result of : ..."(in 5 Plots)". I have attempted to
solve this by trying different combinations of the hide duplicates and the
running sum options in the footer text box's design properties window but
with no change. The corresponding portion of the control source is: ... & "
(" & Count(*) & " " & IIf(Count(*)=1,"Plot","Plots") & ")" .
I would really appreciate a solution for this. thanks a lot