is it possible?: edit values in a make table query

machumpion

Registered User.
Local time
Today, 07:54
Joined
May 26, 2016
Messages
93
Let's say I wanted to make a table from an existing table. In the new table, I'd like all the records from the existing table, except I'd like to supplement them with one asterisk in the beginning of the value and one asterisk at the end. Is this possible to do within a Make Table query? Thanks!
 
That should work;
Code:
MyNewField: "*" & OldField & "*"
It does here.
 

Users who are viewing this thread

Back
Top Bottom