Given two tables like this:
Date | Client | Category | Amount1 | x
A B C 234
X Y Z 456
MonthDate | Client | Category | Amount2 | y
B C D 567
A B C 123
How can I find records where x.Month(Date) = y.MonthDate, x.Client = y.Client, and x.Category = y.Category?
I need to be able to display Amount1 – Amount 2 = Net for certain clients.
A direct interpretation
However, if one of them is a monthly invoice and the other raw records, then you could be after an aggregate: