two tables:
tblEmployeeForecast, tblEmployeeActual
Fields in tblEmployeeFOrecast:
EmployeeNoForecast, EmployeeNameForecast, CostCenterForecast
Fields in tblEmployeeActual:
EmployeeNoActual, EmployeeNameActual, CostCenterActual
eg data for tblEmployeeForecast:
EmployeeNoForecast EmployeeNameForecast
1 lim
2 heng
3 sin
4 tan
eg data for tblEmployeeActual:
EmployeeNoActual EmployeeNameActual
1 lim
2 heng
3 sin
5 kok
Note that the only different for those two tables is the data in the final field.
Problem:
I joint the two tables in query with EmployeeNoFOrestcast and EmployeeNoActual. I want to be able to display out all the data with all the feilds in the query result. If there is no corresponding data (in this example, EmployeeNo 4, EmployeeName tan and EmployeeNo5, EmployeeName kok are the different data for those two tables.
I noticed that the join properties Number 2 and Number 3 only fulfill part of i want. Maybe there is a way to join up the join properties Number 2 and Number 3. Any idea????
tblEmployeeForecast, tblEmployeeActual
Fields in tblEmployeeFOrecast:
EmployeeNoForecast, EmployeeNameForecast, CostCenterForecast
Fields in tblEmployeeActual:
EmployeeNoActual, EmployeeNameActual, CostCenterActual
eg data for tblEmployeeForecast:
EmployeeNoForecast EmployeeNameForecast
1 lim
2 heng
3 sin
4 tan
eg data for tblEmployeeActual:
EmployeeNoActual EmployeeNameActual
1 lim
2 heng
3 sin
5 kok
Note that the only different for those two tables is the data in the final field.
Problem:
I joint the two tables in query with EmployeeNoFOrestcast and EmployeeNoActual. I want to be able to display out all the data with all the feilds in the query result. If there is no corresponding data (in this example, EmployeeNo 4, EmployeeName tan and EmployeeNo5, EmployeeName kok are the different data for those two tables.
I noticed that the join properties Number 2 and Number 3 only fulfill part of i want. Maybe there is a way to join up the join properties Number 2 and Number 3. Any idea????