Group Count of Dates (No Duplicates)

N

NFL

I have a report grouped by day/month/year. The date field IS only placed on
the group header and not in the details. The details may show many
occurances and I would like to count the days once.

Thank you
 
M

Marshall Barton

NFL said:
I have a report grouped by day/month/year. The date field IS only placed on
the group header and not in the details. The details may show many
occurances and I would like to count the days once.


Add a text box (named textRunCount) to the group header or
footer) section, Set it's control source expression to =1
and RunningSum to Over All. Then a report footer text box
can display the total by using the expression =textRunCount
 
D

Duane Hookom

Apparently you want to count group headers. If this is the case, add a couple
text boxes:

Section: Group Header
Name: txtRunCount
Control Source: =1
Running Sum: Over All
Visible: No

Section: Report Footer
Control Source: =txtRunCount
 
N

NFL

Thank you ... that did the trick! :)

Duane Hookom said:
Apparently you want to count group headers. If this is the case, add a couple
text boxes:

Section: Group Header
Name: txtRunCount
Control Source: =1
Running Sum: Over All
Visible: No

Section: Report Footer
Control Source: =txtRunCount
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top