Emailing an User Input form from Excel

  • Thread starter Thread starter Jaime
  • Start date Start date
J

Jaime

Hi to all,

Here's the situation. I created a form in Excel in which I
want users to provide their input. I don't want to email
the spreasheet, Just the Input. I've been using this code
but it mails out the spreasheet aswell (I don't want to
email the spreasheet). Can someone telll me what I'm doing
wrong?
Thanks in Advanced!

Here's the code
=====================
ActiveWorkbook.HasRoutingSlip = True
With ActiveWorkbook.RoutingSlip

.Recipients = "Email Address"
.Subject = Subj
.Message = All
.Delivery = xlAllAtOnce
.ReturnWhenDone = False
.ReturnWhenDone = True
.TrackStatus = True
End With
Application.ScreenUpdating = True
ActiveWorkbook.Route
===================================

Thanks in Advance!
 

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