The Access GUI seems determined that I only pick values or fields that come from the CurrentDb, but I want to refer to a different one. I've been doing my research but found little of use.
Essentially, where
is a table in a different database to the Table/Query RowSourceType combobox, I need my RowSource to be:
SELECT
.[Field1]
.[ID] FROM
ORDER BY [Field1] DESC;
I just don't know how to refer to a table from a different database!
Thanks in advance
Essentially, where
SELECT
I just don't know how to refer to a table from a different database!
Thanks in advance