I have two tables, one table has all the main transactions in it. Now, the system needs to know what currency to use, which I have figured out. Here is my problem, I created the other table to add exchange rates on a daily basis. I want to use a DLookup to find the exchange rate for that given days transactions on a seperate report.
This is my code that does not seem to work:
DLookup("ExchangeRate","tblExchange","TransactionDate=#" & [TransactionDate] & "#")
This is my code that does not seem to work:
DLookup("ExchangeRate","tblExchange","TransactionDate=#" & [TransactionDate] & "#")