Results 1 to 2 of 2
  1. #1
    Ruegen's Avatar
    Ruegen is offline VIP
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    1,496

    Row source value list filter

    Trying to filter a continuous form using an unbound combo box that is set with a value list

    when the value changes I was hoping to filter the form to only show the blank records

    Code:
    Private Sub Text53_AfterUpdate()
    
    
    If Me.Text53.RowSource = "Name" Then
    Me.Filter = "SchoolName is null"
    Me.FilterOn = True
    ElseIf Me.Text53.RowSource = "Suburb" Then
    Me.Filter = "SchoolSuburb is null"
    Me.FilterOn = True
    End If
    End Sub
    any suggestions?

  2. #2
    Ruegen's Avatar
    Ruegen is offline VIP
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    1,496
    Nevermind - removed .rowsource

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 11-28-2013, 10:03 PM
  2. Replies: 15
    Last Post: 11-20-2013, 04:30 PM
  3. Replies: 6
    Last Post: 06-22-2013, 08:10 PM
  4. Replies: 1
    Last Post: 03-01-2011, 03:04 PM
  5. Replies: 11
    Last Post: 04-16-2010, 10:57 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums