Need help with a query

L

LJWW2

Let me start by saying that I have very little experience in Access. I've
learned what I know by "tinkering" around in it and a lot of the terminology
I've seen on these boards is above my head.

Here's the background to my question. I created an employee database that
consists of one massive form with several tabs and on each tab there are
several subforms. The main form was created from the Employee Header table
and the subforms were created from queries from tables. The idea is when you
open the form, you see an employee's basic info on the top (i.e. ssn, name)
and then as you go through each of the tabs you see information specific to
that employee (i.e. employment dates, salary, address). Because employee
information can change frequently, each subform has an Effective Date field
specific to the information on that subform. I fixed it so that the most
recent effective date is displayed so that when you look at an employee in
the form, you are looking at "real time" data.

What I'm trying to do is to create a query that displays only the "real
time" data for each employee. What's happening now, for example, is if I run
a query and someone has more than one record in a subform, all of the records
are showing up and the employee's name is listed multiple times. I tried
doing a query using "=DMax("[Field Name]","[Table Name]")", but when I do
that, only the employee with the most recent effective date shows up. Can
anyone help?

Thank you in advance!
 
G

ghetto_banjo

When you build your query, right click inside the design view and turn
on Totals. Then you can set the Effective Date to Max, and keep the
EmployeeID or whatever as Group By. Be sure to use Max and NOT Last
for the Effective Date.

A (possibly) simplified version of the query's SQL will look like:

SELECT EmployeeID, Max([EffectiveDate] As MostRecentDate FROM
tblEmployees GROUP BY EmployeeID
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

update table using a Query 3
Query 2
Choosing date from query 2
Payroll Database - Need Help!! 1
Need Help... 5
Omit Duplicates in query 6
Help with update query and unbound combobox 4
photo on a form 4

Top