Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
No one can say if it's best to use a button except you! (you know the navigation you seek ... not Us!) However it can be done with a button.tbac said:[blue]Is it best to use a button? . . .[/blue]
[blue] If InStr(1, Me.RecordSource, "WHERE") > 0 Then
Me.RecordSource = "qryAll"
Me![purple][B][I]ButtonName[/I][/B][/purple].Caption = "[purple][b]Show 112 Records![/b][/purple]"
Else
Me.RecordSource = "qry112"
Me![purple][B][I]ButtonName[/I][/B][/purple].Caption = "[purple][b]Show All Records![/b][/purple]"
End If[/blue]
If Me.RecordSource= "qry112"
Me.RecordSource = "qryAll"
Me!ButtonName.Caption = "Show 112 Records!"
Else
Me.RecordSource = "qry112"
Me!ButtonName.Caption = "Show All Records!"
End If
Me.Requery