I have two tables I want joined into a query for calculation purposes. If table A has revenue figures from one department, table B has revenue from another department, and I want to use a query to add these revenues to a total revenue that will be deposited to the bank, the query works.
If, however, department B was closed that day and therefore table B has no matching record for the =TODAY() criteria, I still want the equation to return table A's revenue. The problem I am running into is that with only one record (table A or Table B), the query is blank, as if the whole park is closed. I considered using an append query to add 0 value records by default, but I am willing to bet there's an easier way that doesn't avoid the issue. I kind of figure there's some SQL coding involved, which I'm not familiar with writing directly.