I have the following query:
It works but--In the query "qryIIFforCurrentPlan" the field CurrentPlan is only supposed to show up when the Fund field is ESAX22008D but it is showing up in both the Fund results???
I hope this is clear enough it is very hard to explain
Thanks in advance
Code:
SELECT [Budget as of 4-1-08].[WBS Element], [Budget as of 4-1-08].Description, [Budget as of 4-1-08].Fund, [Budget as of 4-1-08].[Commitment Item], qryIIFforCurrentPlan.CurrentPlan, [Budget as of 4-1-08].Commitment, [Budget as of 4-1-08].Obligation, [Budget as of 4-1-08].Cost
FROM [Budget as of 4-1-08] INNER JOIN qryIIFforCurrentPlan ON ([Budget as of 4-1-08].[Commitment Item] = qryIIFforCurrentPlan.[Commitment Item]) AND ([Budget as of 4-1-08].[WBS Element] = qryIIFforCurrentPlan.WBSNumber);
It works but--In the query "qryIIFforCurrentPlan" the field CurrentPlan is only supposed to show up when the Fund field is ESAX22008D but it is showing up in both the Fund results???
I hope this is clear enough it is very hard to explain
Thanks in advance