andym

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to create a form so that when it is opened, it only displays
records that has its respective "stresscheck" checkbox checked. Currently,
the form is designed to open up only when you press a button on another form.
I'd imagine I have to build the code into that button. Does anyone have a
suggestion for this? Thanks
Andy
 
Not sure if that what you are looking for, try using the where condition of
the Open form command line

Docmd.OpenForm "FormName" , , , "[stresscheck] = True"
 
That worked great. Thanks!
Andy

Ofer Cohen said:
Not sure if that what you are looking for, try using the where condition of
the Open form command line

Docmd.OpenForm "FormName" , , , "[stresscheck] = True"

--
Good Luck
BS"D


AndyM said:
I'm trying to create a form so that when it is opened, it only displays
records that has its respective "stresscheck" checkbox checked. Currently,
the form is designed to open up only when you press a button on another form.
I'd imagine I have to build the code into that button. Does anyone have a
suggestion for this? Thanks
Andy
 
Back
Top