I had this in a different post, but that post had a lot of other issues in it.
I have a union ALL query of 2 tables that list records sent from one db and received in another. So I have 3 fields in the results: filename, date, and a 3rd column which contains either "sent" or "received" so I know from which side it came.
I have the report grouped on this field with a total, so my report looks like this:
sent: 50
Received: 60
If sent count doesn't equal the received count, how can I display the details section to only show the records, from either side, that have no corresponding record? So in my above example, I'd want to show just the 10 files under "received" that have no match in the "sent" group?
I've tried group selections, and trying to suppress the details of the report based on a formula, but can't seem to get it to work. Any help is appreciated, thanks!
I have a union ALL query of 2 tables that list records sent from one db and received in another. So I have 3 fields in the results: filename, date, and a 3rd column which contains either "sent" or "received" so I know from which side it came.
I have the report grouped on this field with a total, so my report looks like this:
sent: 50
Received: 60
If sent count doesn't equal the received count, how can I display the details section to only show the records, from either side, that have no corresponding record? So in my above example, I'd want to show just the 10 files under "received" that have no match in the "sent" group?
I've tried group selections, and trying to suppress the details of the report based on a formula, but can't seem to get it to work. Any help is appreciated, thanks!