Hopefully here I will show all my secrets lol.
Tables I have, I have to remember because my latest database is at work and
I am at home.
Table ECOLog (Product) This is the table I have the BaseNumber and Extension
(which should be my ECONumber used in my AffectedParts table) in, also the
following fields:
EnteredDate
ReleaseDate
DescOfChange
Status (which is tied to the Status Table)
Deviation (Yes/No)
Family (which is tied to the Family table)
ECOLocation (hyperlink to the ECO on the network)
Table Family:
FamilyNumber
FamilyDescription
Table Affectedparts:
ECONumber
DocumentNumber
Revision
Description
Table Initiator:
FirstName
LastName
PhoneExtension
Table Status:
Approved
Pending
Inactive
Obsolete
This table is pretty much a stand-alone table; it isn’t tied to any of the
other tables. I would like the affected documents to be tied to it so I don’t
have to cut and paste the descriptions

Table Documents:
DocumentNumber
DocDescription
DocRevision
DocStatus (Tied to the Status table)
DocType (this is just a note field for information)
HardCopy (yes/no field (checkbox))
PDF (yes/no field (checkbox))
WordDoc (yes/no field (checkbox))
CADFile (yes/no field (checkbox))
AI (yes/no field (checkbox))
Hex/Bin (yes/no field (checkbox))
SourceFiles (yes/no field (checkbox))
DocumentLocation (hyperlink to directory on the network)
____________________________
Okay here are my forms
AffectedDocuments (comes from the AffectedDocument table with all the same
fields, I have the ECONumber field hidden, so I only see the document number,
description and revision in my main form)
I do have this form tied to my Documents form so I can double click and
bring up my documents form so I can cut and paste the descriptions :-(
ECOLog (This is the Form used for assigning the new ECONumber)
From the Table ECOLog
BaseNumber (With the Code you gave me

) (combobox)
Extension
EnteredDate
Status (which is tied to the Status Table)
Deviation (Yes/No)
Family (which is tied to the Family table)
What I also did here is created a text box with the following
Here is your new ECO number: textbox =[BaseNumber] & "-" & [Extension] Now I
will use =[BaseNumber] & "-" & Format([Extension],"000")
I took the BaseNumber field and made it a combo box so I can see the
FamilyNumber and FamilyDescription, and hid the Extension box so the new
number would show as one number in the text box, so people wont be confused
with the two boxes.
ECOForm
This form has all the same information as the ECOLog form, except I have
ReleaseDate instead of EnteredDate and I don’t have BaseNumber or Extension
on it, just a text box with the combined =[BaseNumber] & "-" &
Format([Extension],"000")
This form also has the subform AffectedDocuments and were tied by the
ECONumber field, but now I don’t know how to tie them together.
Documents
Has all the same fields as my table.
I hope this clears up any secrets I may have, lol. I am going to now work on
the database I have here, to get it like the one I have at work. So it would
be easier to see what is happening.
Thanks again for all your help!!!
Tammy