Add more text

  • Thread starter mattc66 via AccessMonster.com
  • 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
 
J

John Vinson

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]
 
Top