So I have an autonumbering field that just keeps on growing, this field makes an id for our samples once I put it into a calculated field:
Code:
[Facility Abbreviation] & "-" & [ID] & "-" & [Test Abbreviation]
PL-0001-NT
PL-0002-NT
ect...
Now if there is a problem with this sample later in our process we still want to store all the data for the first results, however the new sample ID needs to be similar for a reference point (add an "R" after the "NT" ex. "PL-0001-NTR") for the new data entry so we can keep both but know that the two samples are related however the sample was repeated.
Code:
PL-0001-NT
PL-0001-NTR
PL-0002-NT
ect...
I dont know if it would be easier if I just have a spot in the form that it generates the above but if we need to we can go into it and change a number, however I dont really know how to approach it either way.