Sep 27, 2004 #1 matpj Technical User Mar 28, 2001 687 GB Hi, in addition to my post earlier I need to set one field up using data from two others (hyphen seperated) e.g. field1 field2 derived_field UKE0323 Project3 UKE0323 - Project3 how is this possible?
Hi, in addition to my post earlier I need to set one field up using data from two others (hyphen seperated) e.g. field1 field2 derived_field UKE0323 Project3 UKE0323 - Project3 how is this possible?
Sep 27, 2004 #2 cghoga Programmer Jun 26, 2003 614 US In a query: SELECT YourTable.field1, YourTable.field2, [Field1] & " - " & [field2] AS Derived_Field FROM YourTable; On a form set an unbound text box's control source to: [Field1] & " - " & [field2] Hope this helps. Upvote 0 Downvote
In a query: SELECT YourTable.field1, YourTable.field2, [Field1] & " - " & [field2] AS Derived_Field FROM YourTable; On a form set an unbound text box's control source to: [Field1] & " - " & [field2] Hope this helps.