In Excel, I created a table of rows I needed to update, I imported this table into access as Sheet1.
Then I created this select query to produce an easily updated view of the data:
SELECT RawFinancials.*
FROM RawFinancials INNER JOIN Sheet1 ON RawFinancials.Prj = Sheet1.Prj;
The problem is, once I run this query, it does not allow me to update any of the data. Can someone please explain to me why this is happening? I did the exact same thing for another query and it worked fine.
Then I created this select query to produce an easily updated view of the data:
SELECT RawFinancials.*
FROM RawFinancials INNER JOIN Sheet1 ON RawFinancials.Prj = Sheet1.Prj;
The problem is, once I run this query, it does not allow me to update any of the data. Can someone please explain to me why this is happening? I did the exact same thing for another query and it worked fine.
