filters

S

sd

When I filter on a screen with a subfrom it does not display the subform
contents, is there a way to make it display subform information also. Also
it does not let you filter on the subform, is there a way to filter on the
subfrom?
 
R

Rick Brandt

sd said:
When I filter on a screen with a subfrom it does not display the subform
contents, is there a way to make it display subform information also. Also
it does not let you filter on the subform, is there a way to filter on the
subfrom?

Applying a filter to the main form does nothing that would affect the behavior
of the subform. As long as the record displayed in the main form has matching
entries in the subform they should be displayed.

You can apply a filter to the subform as long as you put focus in the subform
before invoking the filter. However; if what you want is to filter the *Main*
form based on entries in the subform, that is possible but not with the standard
filtering tools. You essentially need a filter with a sub-select query in it
like...

IDNum In(SELECT IDNum FROM Sub-Table WHERE SomeCriteria...)
 

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

Similar Threads

Filtered view of Visio Chart 0
Subform Refreshing! 1
Subform in data sheet view 1
Sorting and filtering text 0
Descenders clipped 0
.pdf Storage 2
get data from main form and update subform 1
Sub Form 4

Top