thabounceisback
Registered User.
- Local time
- Yesterday, 19:15
- Joined
- Sep 17, 2009
- Messages
- 31
No, I think you misread that. It doesn't say anything about the "DescriptionKey" field. It says it can't find "Description Key" field. Which is the control name for the text box in my subform which contains the "DescriptionKey" data.
I am confident that that is the name of the control.
Ok, my bad. I was thinking about this the wrong way. The combobox actually filters two other fields whose control names are Description and Code Definition.
When I made the adjustment (below) I got the error message that "Object does not support property or method." Does this mean that since "DescriptionKey" is a number I should be using a different code to filter?
Code:
Me![Description].Form.Filter = "[Description Key] = '" & Combo11.Value & "'"
Me![Description].Form.FilterOn = True