Syntax Error (Missing Operator)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shimul
    New Member
    • Nov 2008
    • 28

    Syntax Error (Missing Operator)

    Hi All,

    Can you please check what I am missing here
    Code:
    DoCmd.OpenForm "saidhazard2", , , "[FK_SAIID] = " & Me!SAIID & "[FK_Haz_Cat_ID] = " & Me!FK_HazCatID
    Thank you for your help.
  • shimul
    New Member
    • Nov 2008
    • 28

    #2
    I got what I was missing.

    Thank you.

    Comment

    • nico5038
      Recognized Expert Specialist
      • Nov 2006
      • 3080

      #3
      Please post the solution the next time:
      "[FK_Haz_Cat_ID] = "
      should be:
      " AND [FK_Haz_Cat_ID] = "

      Nic;o)

      Comment

      Working...