S
Sue Compelling
Hi
My Form (called Sales Estimates) is a split form (ie - Data Entry form on
top and datasheet below)
When the user types in the street name I want the filter to provide all
records also for that street name. My expression is:
Private Sub StreetName_AfterUpdate()
DoCmd.ApplyFilter , "[StreetName] = [Forms]![salesestimates]![StreetName]"
End Sub
Three wrong things are happening with this ie:
.... when I type Queen it comes back with all records in Queen (so far so good)
but when I clear the filter and then type Clarence
1) it comes back with all the Queen records
2) it clears all my sort requirements
3) the screen goes nuts and flickers (calculates) for about 10 secs
Help ...
TIA
My Form (called Sales Estimates) is a split form (ie - Data Entry form on
top and datasheet below)
When the user types in the street name I want the filter to provide all
records also for that street name. My expression is:
Private Sub StreetName_AfterUpdate()
DoCmd.ApplyFilter , "[StreetName] = [Forms]![salesestimates]![StreetName]"
End Sub
Three wrong things are happening with this ie:
.... when I type Queen it comes back with all records in Queen (so far so good)
but when I clear the filter and then type Clarence
1) it comes back with all the Queen records
2) it clears all my sort requirements
3) the screen goes nuts and flickers (calculates) for about 10 secs
Help ...
TIA