Char(10) or Char(13) in body of email

R

ryguy7272

I'm trying to use this snippet of code in the body of an email, but I get an
error message saying that the function is not defined.

'some stuff here...
Please let me know if you have any questions!" _
& CHAR(13) & _
'some stuff here...

What am I doing wrong?

Thanks,
Ryan--
 
U

UglyChicken

I'm trying to use this snippet of code in the body of an email, but I getan
error message saying that the function is not defined.

'some stuff here...
Please let me know if you have any questions!" _
& CHAR(13) & _
'some stuff here...

What am I doing wrong?

Thanks,
Ryan--

Replace CHAR(13) with Chr(13)
 

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

Top