adding text with update query

  • Thread starter Thread starter Lauri
  • Start date Start date
L

Lauri

Using Access 2000. I want to update the text in a field to include the text
that's already there and add two words.

<field> = <field> & " - cancelled"

It seems like it would be a simple request, but I'm stumped.
 
Using Access 2000. I want to update the text in a field to include the text
that's already there and add two words.

<field> = <field> & " - cancelled"

It seems like it would be a simple request, but I'm stumped.
Create an Update query.

Update YourTable Set YourTable.[FieldName] = [FieldName] & "-
cancelled";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top