JohnC# Posted May 16, 2001 Posted May 16, 2001 I need to count how many different client come to get our service. When a client come, a new record is create containing :is client # and the date . Is there a way to know how many different client come : Thanx
Chuck Posted May 17, 2001 Posted May 17, 2001 If each visit is a record, then you could create a self-join relaitonship within the file using the client # on both sides of the relationship. Then create a calculation field which is set to Count( SelfJoin::client # ). This will give a count of the related records, which should be a count of the visits. Chuck
Recommended Posts
This topic is 8663 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now