Stupid sodding code.... specifically filters on toggle buttons...please help !!!!!!

  • Thread starter Thread starter benj.lewis1
  • Start date Start date
B

benj.lewis1

Trying depserately to resolve this one issue. I am tring to filter
subform [Process list] based on value "DP" in the [process] field..
Everytime I run it, I get prompted for a mesage box asking for the
value of DP !!!

I can't sleep, getting ratty and any help would be appreciated.

Me.process_list.Form.Filter = "process=" "dp"
Me.process_list.Form.FilterOn = True

Am I being bone?

SIS
 
Trying depserately to resolve this one issue. I am tring to filter
subform [Process list] based on value "DP" in the [process] field..
Everytime I run it, I get prompted for a mesage box asking for the
value of DP !!!

I can't sleep, getting ratty and any help would be appreciated.

Me.process_list.Form.Filter = "process=" "dp"
Me.process_list.Form.FilterOn = True

Am I being bone?

Try

Me.process_list.Form.Filter = "process='dp'"

That's with singlequotes before and after dp.

John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top