M
Matthew
I have a autonumber field called "id".
I would like to make a different field in the same record have the same data
as "id" when new records are added.
---------------------------
However, this may not be the best way to go about it. Below is my problem.
I have a lookup on the field with the following query:
SELECT psub.id AS xyz_ID_xyz, pmain.product & Left(woodtype.wood,1) AS Expr1
FROM woodtype INNER JOIN (pmain INNER JOIN psub ON pmain.ID=psub.pmain_ID)
ON woodtype.ID=psub.woodtype_ID;
I display Expr1 in the field.
I would like it to automatically create Expr1 when new records are added.
Matthew
I would like to make a different field in the same record have the same data
as "id" when new records are added.
---------------------------
However, this may not be the best way to go about it. Below is my problem.
I have a lookup on the field with the following query:
SELECT psub.id AS xyz_ID_xyz, pmain.product & Left(woodtype.wood,1) AS Expr1
FROM woodtype INNER JOIN (pmain INNER JOIN psub ON pmain.ID=psub.pmain_ID)
ON woodtype.ID=psub.woodtype_ID;
I display Expr1 in the field.
I would like it to automatically create Expr1 when new records are added.
Matthew