M
m stroup
frmEmployeeEntry writes to tblEmployees.
btnUpdate changes tblBillets.status to "filled" and does a few other chores.
rptForEmail is based on rptForQuery with the following SQL
SELECT tblEmployees.EmployeeID, [FirstName] & " " & [LastName] AS Name,
tblEmployees.FirstName, tblEmployees.LastName, tblEmployees.Type,
tblEmployees.Country, tblEmployees.StartDt, tblEmployees.EndDt,
tblEmployees.Building, tblEmployees.Room, tblEmployees.Cubicle,
tblEmployees.WorkPhone, tblEmployees.CellPhone, tblEmployees.Email,
tblEmployees.Competency, tblEmployees.Branch, tblEmployees.Organization,
tblEmployees.Rank, tblEmployees.Company, tblEmployees.Contract,
tblEmployees.Notes, tblSlots.Department, tblSlots.Team, tblSlots.Position
FROM tblSlots INNER JOIN tblEmployees ON tblSlots.Slot = tblEmployees.Slot
WHERE
(((tblEmployees.EmployeeID)=[Forms]![frmEmployeeEntry]![txtEmployeeID]));
I have opened the query at the same time the form is open and filled, but it
shows no data. Is this because the form writes to the table?
The email portion of the code works fine, but the report is always blank.
Thanks for any guidance.
btnUpdate changes tblBillets.status to "filled" and does a few other chores.
rptForEmail is based on rptForQuery with the following SQL
SELECT tblEmployees.EmployeeID, [FirstName] & " " & [LastName] AS Name,
tblEmployees.FirstName, tblEmployees.LastName, tblEmployees.Type,
tblEmployees.Country, tblEmployees.StartDt, tblEmployees.EndDt,
tblEmployees.Building, tblEmployees.Room, tblEmployees.Cubicle,
tblEmployees.WorkPhone, tblEmployees.CellPhone, tblEmployees.Email,
tblEmployees.Competency, tblEmployees.Branch, tblEmployees.Organization,
tblEmployees.Rank, tblEmployees.Company, tblEmployees.Contract,
tblEmployees.Notes, tblSlots.Department, tblSlots.Team, tblSlots.Position
FROM tblSlots INNER JOIN tblEmployees ON tblSlots.Slot = tblEmployees.Slot
WHERE
(((tblEmployees.EmployeeID)=[Forms]![frmEmployeeEntry]![txtEmployeeID]));
I have opened the query at the same time the form is open and filled, but it
shows no data. Is this because the form writes to the table?
The email portion of the code works fine, but the report is always blank.
Thanks for any guidance.