JumpinJimRivers
MIS
I've tried all sorts of ways to get this thing to filter, butnot having much luck. When I click on an item in a listbox, I want to filter for all corresponding [sub-po number] records and go to them in another tab.
This is essentially what I'm working with:
Me.[billing monthly].Form.RecordsetClone.Filter = "[sub-po number] = " & [sublist]
Me.[billing monthly].Form.RecordsetClone.FindFirst = "[sub-po number] = " & [sublist]
Me.[billing monthly].Form.Bookmark = Me.[billing monthly].Form.RecordsetClone.Bookmark
Me.tab1.SetFocus
What needs to be tweaked here?
This is essentially what I'm working with:
Me.[billing monthly].Form.RecordsetClone.Filter = "[sub-po number] = " & [sublist]
Me.[billing monthly].Form.RecordsetClone.FindFirst = "[sub-po number] = " & [sublist]
Me.[billing monthly].Form.Bookmark = Me.[billing monthly].Form.RecordsetClone.Bookmark
Me.tab1.SetFocus
What needs to be tweaked here?