BlueJacket
Registered User.
- Local time
- Today, 00:26
- Joined
- Jan 11, 2017
- Messages
- 92
I know this answer is going to be simple, but I can't seem to figure out the root cause of this error message: The changes you requested to the table were not successful because they would create duplicate values in the index, primary key, or relationship. Change the data in the field or fields that contain duplicate data, remove the index, or redefine the index to permit duplicate entries and try again.
This is my table setup:
PropertyID (FK)
TansactionID (PK, Autonumber)
RevenueTypeCode (FK, Indexed - Duplicates OK)
AmountReceivedDate
AmountReceived
I have this table linked to my Property Details table via PropertyID and my Revenue Code table via RevenueCode.
I can't add a new record with a duplicate PropertyID. Why is that? It's not indexed. That error message makes me think it's trying to add a record to my Property Details table, which doesn't make any sense. Unless it's referring to the relationship between the tables, which I don't understand how there can be duplicate values in the relationship.
Any help in this matter would be much appreciated.
This is my table setup:
PropertyID (FK)
TansactionID (PK, Autonumber)
RevenueTypeCode (FK, Indexed - Duplicates OK)
AmountReceivedDate
AmountReceived
I have this table linked to my Property Details table via PropertyID and my Revenue Code table via RevenueCode.
I can't add a new record with a duplicate PropertyID. Why is that? It's not indexed. That error message makes me think it's trying to add a record to my Property Details table, which doesn't make any sense. Unless it's referring to the relationship between the tables, which I don't understand how there can be duplicate values in the relationship.
Any help in this matter would be much appreciated.