So I've been spinning around on this one all day:
I have a form which allows the user to enter a number (corresponding to field paperwork being entered). That number is then used to create a new text string for each record which joins that number and a letter together. The challenge I am having is getting the text string to include an incremental letter. I am comfortable shifting and recasting the number as a character to get what I want, my challenge is to use the right way to correctly state the row of the subform that a new record is created on.
For example: The parent form has a field called Set. The user enters "975".
Then my subform (which is in table view) allows the user to add as many records as they need to complete the data entry.
- Adding the 1st row populates the field Cylinder Number with "975A".
- Adding the 2nd row populates the field Cylinder Number with "975B".
- Adding the 3rd row populates the field Cylinder Number with "975C".
These values correlate to my company's current naming convention. I just want this little database to ensure that when a record is added or deleted all the records that have this particular Set number end up being accurately renamed. If someone can get me to 1, 2, 3... with that I can then make the string I am looking for.
Please help? Thanks in advance!