Command Button

  • Thread starter Thread starter Pass-the-reality
  • Start date Start date
P

Pass-the-reality

I used the wizard to create a command button so that when it opens my form
(frmCallLog), it will only show records where UserID and Text28 are the same.
How can I expand on stLinkCriteria = "[UserID]=" & "'" & Me![Text28] &
"' " to also so And [Status] = Me!Text25
 
stLinkCriteria = "[UserID]='" & Me![Text28] & "' And [Status] ='" &
Me!Text25 & "'"


'====================================================
John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
'====================================================
 
Back
Top