S srb3464 New member Local time Today, 15:35 Joined Feb 15, 2005 Messages 5 Dec 4, 2005 #1 When I run a query I want to preceed the result of one of the fields with the letter V. ie. the field reads GH567Y and I want it to read VGH567Y Thanks
When I run a query I want to preceed the result of one of the fields with the letter V. ie. the field reads GH567Y and I want it to read VGH567Y Thanks
G gromit Registered User. Local time Today, 07:35 Joined Nov 17, 2005 Messages 260 Dec 4, 2005 #2 Hi - Use an expression for the new field. E.g. NewField: "V" & tblData![OldField] hth, - g