SELECT tblTechnicalIncidentReport.Exercise_Name
you only selected ONE field to display from your table, of course it shows only one field!!! you need to add more fields to it. if they are all from the same table then u can use
SELECT fieldname1, fieldname2, fieldname3, fieldname4 FROM...