B
Billiam
I am trying to make a "Badge" report for instructors in our organization to
properly identify their qualifications to students. There are two possible
qualifications: Non-Restricted and Restricted.
EVERY INSTRUCTOR is qualified for non-restricted, and some are also
qualified to teach Restricted. I would like the title of the badge to reflect
two possible titles:
1. Non-Restricted Instructor
2. Non-Restricted and Restricted Instructor
I assume with my VERY LIMITED knowledge, that I would base an IF Else
statement based on the table (tblQualifications, Restricted is the field,
saved as Yes/No in the table field Restricted inputed from a form called
Instructors)
Having never done this before I am not sure how to go about it....
I think I would use a bound text box (as each instructor has different
qualifications) that contained an If Else expression to provide the correct
Badge Title based on the Instructors qualifications:
If ([TblQualifications].[Restricted]) = True THEN
Badgetitle.Text = "Non-Restricted & Restricted Instructor"
Else
Badgetitle.Text = "Non-Restricted Instructor"
End If
I do not know if I am using the right expression syntax, nor am I sure where
to place the expression, or if I am even doing the right thing at all...any
help appreciated!!!
Billiam
properly identify their qualifications to students. There are two possible
qualifications: Non-Restricted and Restricted.
EVERY INSTRUCTOR is qualified for non-restricted, and some are also
qualified to teach Restricted. I would like the title of the badge to reflect
two possible titles:
1. Non-Restricted Instructor
2. Non-Restricted and Restricted Instructor
I assume with my VERY LIMITED knowledge, that I would base an IF Else
statement based on the table (tblQualifications, Restricted is the field,
saved as Yes/No in the table field Restricted inputed from a form called
Instructors)
Having never done this before I am not sure how to go about it....
I think I would use a bound text box (as each instructor has different
qualifications) that contained an If Else expression to provide the correct
Badge Title based on the Instructors qualifications:
If ([TblQualifications].[Restricted]) = True THEN
Badgetitle.Text = "Non-Restricted & Restricted Instructor"
Else
Badgetitle.Text = "Non-Restricted Instructor"
End If
I do not know if I am using the right expression syntax, nor am I sure where
to place the expression, or if I am even doing the right thing at all...any
help appreciated!!!
Billiam