SELECT Count([INDIVIDUALS Starter Info].CONST) AS Total, CONST.Description
FROM CONST INNER JOIN [INDIVIDUALS Starter Info] ON CONST.Value = [INDIVIDUALS Starter Info].CONST
GROUP BY CONST.Description;
Using the above code I end up with the following results:
Total Description
1 No
3501 Yes
It's counted the 'Yes' & 'No's .. great!
But I actually have 3615 records, how do I count the records that don't match my joined table as well?
Thanx in advance
FROM CONST INNER JOIN [INDIVIDUALS Starter Info] ON CONST.Value = [INDIVIDUALS Starter Info].CONST
GROUP BY CONST.Description;
Using the above code I end up with the following results:
Total Description
1 No
3501 Yes
It's counted the 'Yes' & 'No's .. great!
But I actually have 3615 records, how do I count the records that don't match my joined table as well?
Thanx in advance