Hi,
I need to join two tables.
tbl_Budget has three fields that I need:
[Fund]
[Account]
[Budget_Amount]
tbl_Actuals also has three fields that I need:
[Fund]
[Account]
[Actual_Amount]
I need to compare like [Account] within like [Fund]. The problem is when an account exists in the first table, but not the second, and conversly, an account exists in the second and not the first.
I have tried an outer join, but I only get one side of the data. I need to create a query where if an account does not exist in the other table a "0" value is generated to fill in the proxy field value.
Thanks!
I need to join two tables.
tbl_Budget has three fields that I need:
[Fund]
[Account]
[Budget_Amount]
tbl_Actuals also has three fields that I need:
[Fund]
[Account]
[Actual_Amount]
I need to compare like [Account] within like [Fund]. The problem is when an account exists in the first table, but not the second, and conversly, an account exists in the second and not the first.
I have tried an outer join, but I only get one side of the data. I need to create a query where if an account does not exist in the other table a "0" value is generated to fill in the proxy field value.
Thanks!