The following is a SQL representing an update query that returns the error “You must use an updatable query”. The query I am using to update the table holds 6 records, and when I view the new query it shows the 6 records to be updated. What’s up?
UPDATE tblFeeCalculation INNER JOIN qryFeeCalculation1 ON (tblFeeCalculation.Plan = qryFeeCalculation1.Plan) AND (tblFeeCalculation.Month = qryFeeCalculation1.Month) AND (tblFeeCalculation.Cusip = qryFeeCalculation1.Cusip) SET tblFeeCalculation.FindersFee = [FindersFeeI];