Hi all,
Is there any difference between these two scenarios? Is one or the other better in any way?
Take a form bound to a table 'Customers'
1)
Open the form, set the recordsource to:
SELECT * FROM Customers WHERE Name = "Rob"
2)
Open the form, set the filter to:
Name = "Rob"
I'm assuming...