I have a report that is based on Two tables. One is the Client table and another is a Telphone Table.
The tables have a one to many relationship via the ClientID Field. I have built a small report that shows all of the clients and their telephone numbers. I have have the report so that it only displays one row for each client with only the first telephone number which is exactly what I want.
The problem lies in this expression count([ClientID])
It counts the client ID for every phone number. So lets say I had 15 clients in the report and three of them had 2 phone numbers. The count would be 18 and that is not correct. I am at a loss as to what to do
The tables have a one to many relationship via the ClientID Field. I have built a small report that shows all of the clients and their telephone numbers. I have have the report so that it only displays one row for each client with only the first telephone number which is exactly what I want.
The problem lies in this expression count([ClientID])
It counts the client ID for every phone number. So lets say I had 15 clients in the report and three of them had 2 phone numbers. The count would be 18 and that is not correct. I am at a loss as to what to do