S
Silvio
Objective: Employees that are scheduled to be off today should be excluded
from the list of available.
I have 1 table with 2 text fields EmployeeName and DayOff. The DayOff field
has one of the days of the week in it (e.g. Monday). I managed to extract the
name of the day of the week fro today’s date, however I am having trouble to
compare the two field in the query in order to exclude record where the name
in the two filed are equal (DayOff<>DayWeek).
This is what I have:
SELECT tblEmployees.Name, tblEmployees.DayOff, Format(Date(),"dddd") AS
DayWeek
FROM tblEmployees;
Thank you folks.
from the list of available.
I have 1 table with 2 text fields EmployeeName and DayOff. The DayOff field
has one of the days of the week in it (e.g. Monday). I managed to extract the
name of the day of the week fro today’s date, however I am having trouble to
compare the two field in the query in order to exclude record where the name
in the two filed are equal (DayOff<>DayWeek).
This is what I have:
SELECT tblEmployees.Name, tblEmployees.DayOff, Format(Date(),"dddd") AS
DayWeek
FROM tblEmployees;
Thank you folks.