C
CindyR
Hi everyone,
I have a textbox in my form that needs to display the value of another
textbox on the form, but from the previous record, given two criteria:
1. that the value of "ModNumber" (on the current record) is > 1 and
2. that the value of "TaskName" on the current record matches the "TaskName"
of the previous record
More Details:
My database contains task orders, and each task order can have many Mods.
This question was about the ModForm, which updates the ModTable. TaskName is
a foreign key from the TaskTable (no two TaskNames will be identical), and
ModAutoNumber is the primary key of the ModTable. ModNumber is a
user-defined field that will have integer values > 0.
My rationale for the two criteria: (1)if ModNumber = 1, then there is no
previous Mod, and therefore no field needs to be referenced; (2)If TaskName
doesn't match
the previous record's TaskName, then nothing should be looked up because the
Mods are for different tasks.
Thank you so much!
Cindy
I have a textbox in my form that needs to display the value of another
textbox on the form, but from the previous record, given two criteria:
1. that the value of "ModNumber" (on the current record) is > 1 and
2. that the value of "TaskName" on the current record matches the "TaskName"
of the previous record
More Details:
My database contains task orders, and each task order can have many Mods.
This question was about the ModForm, which updates the ModTable. TaskName is
a foreign key from the TaskTable (no two TaskNames will be identical), and
ModAutoNumber is the primary key of the ModTable. ModNumber is a
user-defined field that will have integer values > 0.
My rationale for the two criteria: (1)if ModNumber = 1, then there is no
previous Mod, and therefore no field needs to be referenced; (2)If TaskName
doesn't match
the previous record's TaskName, then nothing should be looked up because the
Mods are for different tasks.
Thank you so much!
Cindy