I modfied a query that includes a check for tr_code not = a certain value.
The following is the query:
SELECT [A3].P_NAME, [A3].P_ID, [A3].LAST_NAME, [A3].FIRST_NAME, [A3].PHONE, [A3].PHONE_EXT, [A3].[TR Code], [A3].SumOfCount, [A3].[Batch ID], [A3].Submitter, [A3].[Create Date], [A3].[TRC Category], [Reject Categories].Explanation, [A3].[Batch Size], [A3].[TR Code Description]
FROM ([A3] INNER JOIN Submitters ON [A3].Submitter = Submitters.racfid) INNER JOIN [Reject Categories] ON [A3].[TRC Category] = [Reject Categories].Field1
WHERE ([A3-X].[TR Code])<>38 And (([A3].SumOfCount)>9);
When I run the query, it is asking me to supply a [TR Code]. I have no idea why it would be asking for a [TR Code] value.
Can you suggest what I should look for to see why it wants me to supply a tr code value?
I am asking the question since I am new to working with access 2007.
The following is the query:
SELECT [A3].P_NAME, [A3].P_ID, [A3].LAST_NAME, [A3].FIRST_NAME, [A3].PHONE, [A3].PHONE_EXT, [A3].[TR Code], [A3].SumOfCount, [A3].[Batch ID], [A3].Submitter, [A3].[Create Date], [A3].[TRC Category], [Reject Categories].Explanation, [A3].[Batch Size], [A3].[TR Code Description]
FROM ([A3] INNER JOIN Submitters ON [A3].Submitter = Submitters.racfid) INNER JOIN [Reject Categories] ON [A3].[TRC Category] = [Reject Categories].Field1
WHERE ([A3-X].[TR Code])<>38 And (([A3].SumOfCount)>9);
When I run the query, it is asking me to supply a [TR Code]. I have no idea why it would be asking for a [TR Code] value.
Can you suggest what I should look for to see why it wants me to supply a tr code value?
I am asking the question since I am new to working with access 2007.