I have a simple update query that should update a table field to a value caluculated from a table joined to the one I want to update. When I run it, I get the error in the title: didn't update 1435 field(s) due to a type conversion failure. The fields used in the calculation and the field being updated are all number data types. The query was created in design view, but here is the SQL view:
UPDATE [LogTrip with Landings & Hails W TICKET] INNER JOIN LogDetail ON [LogTrip with Landings & Hails W TICKET].ID = LogDetail.TripID SET LogDetail.proportion_string = 1/[LogTrip with Landings & Hails W TICKET]!CountOfStringNum;
I'm confused as to why it would try to update 1435 fields when I am only asking it to update 1 and there is not 1435 fields to in the table I'm trying to update anyway. I've checked several forums for similar problems, and found some with the same error, but it is always becuase the field they are trying to update doesn't match the data type for the value they are trying to set it to. Since I'm trying to update a number field with a number calculated from another number field, I don't see how this could be the case here.
PS - Don't make fun of my table names, I didn't create them, I know access pros hate blanks and special characters in table and field names.![]()