Hi
I have created a query which will return all applications installed on a particular computer, i am trying to show all applications that are not installed on a particular Computer.
I have the following tables:
tbl_Computer_Main_Applications
Computer_Main_Application_ID
Computer_Main_App_Name
Computer_Main_App_Version
tbl_Computer_Identification
Computer_ID
Computer_Asset_Number
Computer_ID_Make
Computer_ID_Model
Computer_ID_Serial_Number
Computer_ID_Warranty_Expiry
Computer_ID_In_Stock
Computer_ID_Out_Of_Service
tbl_Application_Computer_JoinTable
Computer_ID
Application_ID
The query that returns Applications instaleld on a particular Computer looks like this:
Please can someone help.
Thanks
Mo
I have created a query which will return all applications installed on a particular computer, i am trying to show all applications that are not installed on a particular Computer.
I have the following tables:
tbl_Computer_Main_Applications
Computer_Main_Application_ID
Computer_Main_App_Name
Computer_Main_App_Version
tbl_Computer_Identification
Computer_ID
Computer_Asset_Number
Computer_ID_Make
Computer_ID_Model
Computer_ID_Serial_Number
Computer_ID_Warranty_Expiry
Computer_ID_In_Stock
Computer_ID_Out_Of_Service
tbl_Application_Computer_JoinTable
Computer_ID
Application_ID
The query that returns Applications instaleld on a particular Computer looks like this:
Code:
SELECT tbl_Computer_Identification.Computer_Asset_Number, [Computer_Main_App_Name] & " " & [Computer_Main_App_Version] AS Application, tbl_Application_Computer_JoinTable.Computer_ID, tbl_Application_Computer_JoinTable.Application_ID
FROM tbl_Computer_Main_Applications INNER JOIN (tbl_Computer_Identification INNER JOIN tbl_Application_Computer_JoinTable ON tbl_Computer_Identification.Computer_ID = tbl_Application_Computer_JoinTable.Computer_ID) ON tbl_Computer_Main_Applications.Computer_Main_Application_ID = tbl_Application_Computer_JoinTable.Application_ID
WHERE (((tbl_Computer_Identification.Computer_Asset_Number)=[Enter Asset Number]));
Please can someone help.
Thanks
Mo