A
azu_daioh
I dont really know how to phrase this but this is what I have:
TABLE (fields)
FINDINGS (DIFO_Num, Manager, Regional Manager) **DIFO is the office
number
STAFF INFO (DIFO_Num, Name, Title, Remove) **remove is yes/no
In the FINDINGS form, the (manager) & (regional manager) is set as a
list box with the following ROW SOURCE
SELECT [Staff Info].Name
FROM [Staff Info]
WHERE ((([Staff Info].DIFO_Num)=Findings!DIFO_Num)
And (([Staff Info].Title)="Field Office Manager")
And (([Staff Info].Remove)=No));
The reason for the (remove) field is to only use the most current
(manager) for the new records and keeping the older records with the
previous (manager)
For example: Record#1 was created and at that time the manager is XYZ
By the time Record#100 is created, a new manager is ABC
I want to be able to maintain records 1-99 with the XYZ manager and
new records to automatically select ABC as the manager.
However, with the SELECT statement above -- it changes the older
records (manager) to ABC.
Basically, if the current record is for DIFO_NUM "123", the (manager)
and (regional manager) should be automatically completed based on
STAFF INFO table.
Please please help!!! Thank you.
TABLE (fields)
FINDINGS (DIFO_Num, Manager, Regional Manager) **DIFO is the office
number
STAFF INFO (DIFO_Num, Name, Title, Remove) **remove is yes/no
In the FINDINGS form, the (manager) & (regional manager) is set as a
list box with the following ROW SOURCE
SELECT [Staff Info].Name
FROM [Staff Info]
WHERE ((([Staff Info].DIFO_Num)=Findings!DIFO_Num)
And (([Staff Info].Title)="Field Office Manager")
And (([Staff Info].Remove)=No));
The reason for the (remove) field is to only use the most current
(manager) for the new records and keeping the older records with the
previous (manager)
For example: Record#1 was created and at that time the manager is XYZ
By the time Record#100 is created, a new manager is ABC
I want to be able to maintain records 1-99 with the XYZ manager and
new records to automatically select ABC as the manager.
However, with the SELECT statement above -- it changes the older
records (manager) to ABC.
Basically, if the current record is for DIFO_NUM "123", the (manager)
and (regional manager) should be automatically completed based on
STAFF INFO table.
Please please help!!! Thank you.