I am using Access 2007. I am also a very new Access programmer.
I have a UserIdentification form that saves in a global variable the users' programID. I would like to use that global variable in the Select statement on the next form to select only those patients involved in the same program. The Where clause as I have it currently written is:
But it isn't working. What do I put to the right of the '='?
TIA
~RLG
I have a UserIdentification form that saves in a global variable the users' programID. I would like to use that global variable in the Select statement on the next form to select only those patients involved in the same program. The Where clause as I have it currently written is:
Code:
WHERE (((Patient.ProgramID)=[Forms]![Menu]![gloProgID]))
TIA
~RLG