PDA

View Full Version : Solved: update column



satyen
03-08-2010, 03:33 PM
Does anyone know I can do an update query that appends a column by prefixing what ever is in there with "EXE-" for example.

Many thanks.

CreganTur
03-09-2010, 11:42 AM
In the Update To row of the query for the field you want to update put:

"EXE-" & [ColumnName]
Where ColumnName is the name of the actual field whose value you want to update.

HTH:thumb

satyen
03-20-2010, 04:45 AM
Many Thanks this worked!