Hi,
I am trying to perform a calculation that adds together two 'Counts' (on seperate tables) to give a total value.
The code for the two counts is:
Count(Tbl_Contr act_Maintenance .[Supplier ID]) AS [No of General Contracts], Count(Tbl_Contr act_General_Hea d.[Supplier ID]) AS [No of Maintenance Contracts]
I thought that i might have been able to use the 'Sum' Function in an expression like sum(count(Tbl_C ontract_Mainten ance.[Supplier ID]))+count(Tbl_Co ntract_General_ Head.[Supplier ID]).....
but this is not working.
is there another way around this?
Thanks
I am trying to perform a calculation that adds together two 'Counts' (on seperate tables) to give a total value.
The code for the two counts is:
Count(Tbl_Contr act_Maintenance .[Supplier ID]) AS [No of General Contracts], Count(Tbl_Contr act_General_Hea d.[Supplier ID]) AS [No of Maintenance Contracts]
I thought that i might have been able to use the 'Sum' Function in an expression like sum(count(Tbl_C ontract_Mainten ance.[Supplier ID]))+count(Tbl_Co ntract_General_ Head.[Supplier ID]).....
but this is not working.
is there another way around this?
Thanks
Comment