Just wanted to know if filtering a memo box was possible. I know it's not the best idea to do so but I could really find this feature for my database useful.
Thanks
Just wanted to know if filtering a memo box was possible. I know it's not the best idea to do so but I could really find this feature for my database useful.
Thanks
Normally you can't query Memo, but try filtering using form textbox txtWord:
me.filter = "[myMemo] like *" & txtWord & "*"
me.filterOn = true