Skip to content
Advertisement

Group by using linked tables

I have linked tables. Calls and Call Lines, both tables have a seperate ‘Call Type’ field, I am trying to get the number of calls and the number of call lines which were added on a certain date and then see the split for the types. The below query returns the number for each Call Line which was added, but shows a blank space for Calls which were added. Is there a way to use a link in a Group By?

This returns the following result:

The first result of 2 are from calls not call lines, can I link these to show the type for these as well?

Advertisement

Answer

I think you want to count a column in Calls, so the query should be:

This will not eliminate the row, but from what you say, the count will be zero.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement