I have a table called Drawing Details_tbl. The primary key on this table is the drawing number. The drawings are issued by the architect and the drawing numbers are created by them and must be registered accordingly. Unfortunately many architects use similar drawing number sequences or in some cases repeat the drawing numbers when working on a new job. The only constant would be the Contract number. By creating a string argument and inserting a prefix I can create a unique field within the Drawing Detail_tbl which would look like this - [Contract No]&"-"&[Drawing No]. With this I can use one database to record information for several jobs; otherwise I would have to copy the database and clear the information from the tables each time a new contract is started.