Ah. It seems that you would want to pull the appropriate fields to the Word
document and just place a literal at the top of the columns so you have the
jobs listed across and the schools down the page, with the checks where
appropriate.
You could modify your query to pull the school name, then in the next column
write an IF statement to pull the literal, instead of the yes/no if the
value is true. Youd have to do this for each field (job name) though. Your
column would contain something like this...
JOBJANITOR: IIF([Janitor],"Janitor","")
What this does is...
it says to return a new field and name it "JOBJANITOR". For this field,
look at my table and if the value in the field [Janitor] is true, return the
literal "Janitor". Otherwise, return a blank. You would need to modify it
to include the name of your field (replace [Janitor]) and also what you want
the name to be (which is what is before the colon. You'd need to add a
column for each job in your database.
Hope that helps. I'm sure there are other ways, but this will do what you
asked.
Rick B