Good Day All,
This is my existing query created manually and stored in the query pane:SELECT Names.Fname, Names.Lname
FROM [Names];
I want this query to change to this, using VBA code, when I press a button:
SELECT Names.Fname, Names.Lname
FROM [Names]
WHERE (((Names.Fname)="Manilla"))...