platypus71
Technical User
I have a table with the following fields:
FieldName
ata Type
Emp#:Number
OrigCourseComplete:Yes/No
NewCourseComplete:Yes/No
DateAdded
ate/Time
I am trying to make an update query that will "check the box" in NewCourseComplete if it meets the necessary criteria. Here is what I have, but it does not "check the box". What do I need to change the value to to get the SET NewCourseComplete actually result in the checked box (ie Yes or true)?
FieldName
Emp#:Number
OrigCourseComplete:Yes/No
NewCourseComplete:Yes/No
DateAdded
I am trying to make an update query that will "check the box" in NewCourseComplete if it meets the necessary criteria. Here is what I have, but it does not "check the box". What do I need to change the value to to get the SET NewCourseComplete actually result in the checked box (ie Yes or true)?
Code:
UPDATE qryHPLTrainingHistory INNER JOIN tblHPLCompletion ON qryHPLTrainingHistory.[Emp#] = tblHPLCompletion.[Emp#] SET tblHPLCompletion.NewCourseComplete = Yes, tblHPLCompletion.[Emp#] = [qryHPLTrainingHistory].[Emp#]
WHERE (((qryHPLTrainingHistory.[CapStone Program]) Like "Complete") AND ((qryHPLTrainingHistory.[Effective Performance Management]) Like "Complete") AND ((qryHPLTrainingHistory.[Targeted Selection]) Like "Complete"));