I have a table with budget and forecast information by task joined to another table with detailed actual info by task. On a report, I want to show the budget and forecast information even if there is no detailed actual information. How do I do this when there is no Task info in the detail table?
Sample
Task 1 John Doe 20 actual (detail table), 10 budgeted (b&f table), 20 forecast (b&f table)
Task 2 (no record in detail table), 15 budgeted (b&f table), 30 forecast (b&f table)
I tried a join to include all records from the b&f table and only those records from the detail table where the fields are equal, but it still leaves out the b&f info.![]()