Ok, so I've spent the majority of this morning, and a good portion of last Friday looking through forum posts related to calculated fields. Here is where I'm having a problem:
I have a claims database. My three main tables are: Claims, Payments, and Corrections. On Claims I have a field called CLAIM# which is a calculated field taking the Plant abbreviation and the AutoNumber Primary Key. Payments and Corrections have a similar field taking the CLAIM# (text in these tables) and adding a 'P' or 'C' respectively. These tables also have an AutoNumber primary key.
The reason I want the Claim# to be calculated is because I don't trust end users. My goal is to automate any process that I create for an end user as much as possible. This Claim# will then be saved to the Payment and Correction tables as their Foreign key in order to link those records back to the claim table.
How can I set a relationship between the Claim# calculated on the Claim table and the Claim# on the Payment and Correction tables?
I have a claims database. My three main tables are: Claims, Payments, and Corrections. On Claims I have a field called CLAIM# which is a calculated field taking the Plant abbreviation and the AutoNumber Primary Key. Payments and Corrections have a similar field taking the CLAIM# (text in these tables) and adding a 'P' or 'C' respectively. These tables also have an AutoNumber primary key.
The reason I want the Claim# to be calculated is because I don't trust end users. My goal is to automate any process that I create for an end user as much as possible. This Claim# will then be saved to the Payment and Correction tables as their Foreign key in order to link those records back to the claim table.
How can I set a relationship between the Claim# calculated on the Claim table and the Claim# on the Payment and Correction tables?