I'm trying to improve performance on a query, and I was wondering if this is possible in Access.
Let's say I have a table [fieldtable] with one text column [field1] and one row.
In that column, I have a field name from another table [TransactionTabl e]. This fieldtable gets updated from a form, but it never has more than one row in it.
So an example value in my [fieldtable] look like this:
[TransactionTabl e].[Name]
If I put both tables in my query, without a link, I want to be able to call the field in my [TransactionTabl e] based on the string shown in my [fieldtable].
So my expression in this example query would be
TransField: [fieldtable].[field1]
which would effectively give me this:
TransField: [TransactionTabl e].[Name]
This does not work, but I'm looking for some way to make it work, if possible. Any ideas?
Let's say I have a table [fieldtable] with one text column [field1] and one row.
In that column, I have a field name from another table [TransactionTabl e]. This fieldtable gets updated from a form, but it never has more than one row in it.
So an example value in my [fieldtable] look like this:
[TransactionTabl e].[Name]
If I put both tables in my query, without a link, I want to be able to call the field in my [TransactionTabl e] based on the string shown in my [fieldtable].
So my expression in this example query would be
TransField: [fieldtable].[field1]
which would effectively give me this:
TransField: [TransactionTabl e].[Name]
This does not work, but I'm looking for some way to make it work, if possible. Any ideas?
Comment