I'm trying to write a small SQL query that will allow me to open a form only with that person records. This is in Access 2003. The error I'm getting is a syntax error in the query

VB Code:
  1. ' Dim variables used
  2.                Dim stDocName As String
  3.                Dim stLinkCriteria As String
  4.                ' Form name is 1486
  5.                 stDocName = "1486"
  6.                ' Find out who is selected in the Employee combo box and make SUPER (text box on 1486) equal to that person (so it will filter records by the person)
  7.                 stLinkCriteria = "[SUPER]=" & "'" & Me.cboEmployee & "'"
  8.                 ' Create query that selects only the records of that person
  9.                 sSQL = "SELECT * FROM 1486 WHERE stLinkCriteria"
  10.  
  11.                 ' Open the form
  12.                 DoCmd.OpenForm stDocName, , , sSQL