Add more text

  • Thread starter Thread starter mattc66 via AccessMonster.com
  • Start date Start date
M

mattc66 via AccessMonster.com

Hi All,

I need to add more text to the data I am copying from the below statement.

!JobName = Me.JobName

I want to add the words DUPLICATE after what ever is copied from the Me.
JobName.

So if the jobname was: BURNSTEAD it would read BURNSTEAD DUPLICATE.

Can anyone help me.

Thanks
 
Hi All,

I need to add more text to the data I am copying from the below statement.

!JobName = Me.JobName

I want to add the words DUPLICATE after what ever is copied from the Me.
JobName.

So if the jobname was: BURNSTEAD it would read BURNSTEAD DUPLICATE.

!JobName = Me.JobName & " DUPLICATE"

(Note the space, unless you want BURNSTEADDUPLICATE)

John W. Vinson[MVP]
 

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