Hey W0lffy,
Thanks for the reply, I was thinking about what you last reply suggested but I use the table to calculate each months' data for other fields in the table, so I don't think I want to lose any records or else I'd have to make a new table all together.
I was tinkering around with this again right now and I put the following together to attempt to get the records that I was missing from the other query, can you take alook and see if it looks good to you? This seems to get me the records that were in another cost center in previous month and now in current month. So I need to see if I can combine the other query you helped me with with this one into one query... 
Code:
SELECT A.EQ, A.[Cost Ctr], A.MonthYr, B.EQ, B.[Cost Ctr], B.MonthYr
FROM tblMain AS A INNER JOIN tblMain AS B ON A.EQ = B.EQ
WHERE (((A.[Cost Ctr]) Not Like [enter Not Like CC:] & "*") AND
((A.MonthYr)=[Enter Previous MonthDate:]) AND ((B.[Cost Ctr]) Like [enter like CC:] & "*")
AND ((B.MonthYr)=[Enter Current MonthDate:]));
Rebelle, February 10th, 2010 11:51 AM
Bookmarks