patchesohouli
Registered User.
- Local time
- Today, 03:32
- Joined
- Feb 29, 2016
- Messages
- 10
Hi,
I have one [Master Query] with employee ids, pay frequencies (biweekly 1, biweekly 2) and paycheck issue dates. I also have a second query [Biweekly1 PayDates] that gives me the biweekly 1 paycheck issue dates. Essentially that query returns two paycheck issue dates for me.
I want to create another query that gives me individuals with a biweekly1 frequencies and paycheck issue dates NOT EQUAL (<>) to the two paycheck issue dates from [Biweekly1 PayDates].
This is my sample data, and it is not working.
SELECT [Master Query].[Empl ID]
FROM [Master Query] INNER JOIN [Biweekly1 PayDates] ON [Master Query].[Pay Frequency] = [Biweekly1 PayDates].[Pay Frequency]
WHERE ((([Master Query].[Paycheck Issue Date])<>[Biweekly1 PayDates].[Paycheck Issue Date]))
GROUP BY [Master Query].[Empl ID];
Thanks for your help
I have one [Master Query] with employee ids, pay frequencies (biweekly 1, biweekly 2) and paycheck issue dates. I also have a second query [Biweekly1 PayDates] that gives me the biweekly 1 paycheck issue dates. Essentially that query returns two paycheck issue dates for me.
I want to create another query that gives me individuals with a biweekly1 frequencies and paycheck issue dates NOT EQUAL (<>) to the two paycheck issue dates from [Biweekly1 PayDates].
This is my sample data, and it is not working.
SELECT [Master Query].[Empl ID]
FROM [Master Query] INNER JOIN [Biweekly1 PayDates] ON [Master Query].[Pay Frequency] = [Biweekly1 PayDates].[Pay Frequency]
WHERE ((([Master Query].[Paycheck Issue Date])<>[Biweekly1 PayDates].[Paycheck Issue Date]))
GROUP BY [Master Query].[Empl ID];
Thanks for your help