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

current date 3

Status
Not open for further replies.

mdelgado100

Technical User
Jul 14, 2004
13
US
I need a daily average.

Please help me find a formula or function where the current date of month (1,2,3,4....31) is used to average my occurances. That is where the reports recognized todays date and uses it in the average formula.

I am using crystal 8.5. with an Access Data base.
 
This formula will give you the Day of the current date:

Day(CurrentDate)

-dave
 
You could group on the date and set it to create a new group each day in the Group Expert. Then create either a formula to do the averaging eg:
Code:
Average({Table.Field},MyGroupName)

or you could just do an "Insert Summary" and use the Average Option within the group.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top