Basically (and I'm sure i'm not doing this the "right way") I have a user field that the person who created the record is supposed to select their name from. It is linked to a Users table. I have a query that pulls the records created in the last 7 days, I then have a report that lists those records, sorted and grouped by user and then day.
Here is my SQL for my Query:
I can post the database, but I would need to create a few fake records instead of the real data. What happens, is that each record is shown, BUT it is duplicated with one for each user (so i'm being added to the 2nd record for example, even though I should not be). The Report is just showing two records under the actual user.
Thanks,
Chris
Here is my SQL for my Query:
Code:
SELECT [Job Bids].[Job Site Name], [Job Bids].[Date Applied], [Job Bids].[Date Posted], [Job Bids].[Position Name], [Job Bids].[Client Name], [Job Bids].Country, [Job Bids].[Bid Type], [Job Bids].[Bid (Gross)], [Job Bids].[Bid (Net)], [Job Bids].URL, [Job Bids].[Post ID], [Job Bids].Email, [Job Bids].Skype, [Job Bids].Invited, [Job Bids].[Client ID], [Job Bids].[Bid (Net)], [Job Bids].[Bid (Gross)], [Job Bids].[Job Description], [Job Bids].[Date Applied], DateDiff("w",[Date Posted],Now()) AS Elapsed, Users.[First Name], [Job Bids].Bidder FROM [Job Bids], Users WHERE (((DateDiff("w",[Date Posted],Now()))<7));
Thanks,
Chris
Comment