I've had a random thought that I need some clarification on please.
I'm used to writing SQL SELECT queries in Access 2003 that takes part of the SELECT criteria from either textboxes or combo boxes, and wondered if it was possible to also make the table dynamic?
Where cboTable is a list of 5 available tables for 5 different departments?
I can do this code within Access VBA, I'm more curious as to wether it's 'doable' in Access.
Cheers,
Jon
I'm used to writing SQL SELECT queries in Access 2003 that takes part of the SELECT criteria from either textboxes or combo boxes, and wondered if it was possible to also make the table dynamic?
Code:
SELECT FirstName, Surname
FROM cboTable
WHERE Surname = txtSurname.value
Where cboTable is a list of 5 available tables for 5 different departments?
I can do this code within Access VBA, I'm more curious as to wether it's 'doable' in Access.
Cheers,
Jon