Hi Everyone!
I've been desperately trying to prepare a database query from Access to Excel. The problem is, when I ask MS Query to import data from more than one table, no data is importing, only the headings. The SQL is as follows:
Everything works fine when I import from only the Expense or Assets tables, but not from both. I only need the last line of the database, so is there some way to import just one line instead of every entry?
Thanks so much for everyone's help!
I've been desperately trying to prepare a database query from Access to Excel. The problem is, when I ask MS Query to import data from more than one table, no data is importing, only the headings. The SQL is as follows:
Code:
SELECT Expense.Rent, Expense.Utilities, Assets.Cash, FROM `C:\My Documents\Accounts`.Expense Expense, ‘C:\My Documents/Accounts’.Assets Assets WHERE TransactionID = TransactionID
Thanks so much for everyone's help!
Comment