I want to have a form with Grid Table with all my customers. Because my customers are more than 500+ i want to place buttons and filter results based on "Name" starting letter. Example, button_A will show only customers with "Name" starting letter is "A".
In Ms Access i had a form with Grid Table and buttons. Each Button was a letter.
Here is the VBA code attach:
Code: Select all
DoCmd.ApplyFilter "", "[Name] Like ""A*"""
Thank you..