VBA macro Envelope Sent not working if worksheet is protected?

FGaxha

Board Regular
Joined
Jan 10, 2023
Messages
220
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have VBA macro to send Email Envelope attached: It work fine if the worksheet is not protected.
But it doesn't work if I protect worksheet. Any Solution Please?
CODE as below:
Sub SendEmail()
Dim SendingRng As Range
On Error GoTo StopMacro
With Application
.ScreenUpdating = False
.EnableEvents = False
End With

Set SendingRng = Worksheets("Subtotal RTO").Range("C1:D5")

With SendingRng

.Parent.Select
.Select

' Create the mail and send it
ActiveWorkbook.EnvelopeVisible = True
With .Parent.MailEnvelope

.Introduction = "Hi XXX and YYYY: Total xxxxxxxxx."

With .Item
.To = "fatosgaxha@gmail.com"
.CC = ""
.BCC = ""
.Subject = "Job: " & Sheet1.Range("C55") & " " & " Total xxxxxxxx"
'.Attachments.Add (ThisWorkbook.FullName)
.Importance = 2
.Send
End With


End With

End With
StopMacro:
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
ActiveWorkbook.EnvelopeVisible = False


End Sub
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Not tested. But before execution you must unprotect the sheet, then you protect it.
Change "abc" to the password of your sheet.
If you don't have a password, then delete "abc":
Sheets("Subtotal RTO").Unprotect
Sheets("Subtotal RTO").Protect

Rich (BB code):
Sub SendEmail()
  Dim SendingRng As Range
 
  On Error GoTo StopMacro
  With Application
    .ScreenUpdating = False
    .EnableEvents = False
  End With
 
  Set SendingRng = Worksheets("Subtotal RTO").Range("C1:D5")
 
  Sheets("Subtotal RTO").Unprotect "abc"
 
  With SendingRng
    .Parent.Select
    .Select
    ' Create the mail and send it
    ActiveWorkbook.EnvelopeVisible = True
    With .Parent.MailEnvelope
      .Introduction = "Hi XXX and YYYY: Total xxxxxxxxx."
      With .Item
        .To = "fatosgaxha@gmail.com"
        .CC = ""
        .BCC = ""
        .Subject = "Job: " & Sheet1.Range("C55") & " " & " Total xxxxxxxx"
        '.Attachments.Add (ThisWorkbook.FullName)
        .Importance = 2
        .Send
      End With
    End With
  End With
 
StopMacro:
  With Application
    .ScreenUpdating = True
    .EnableEvents = True
  End With
  ActiveWorkbook.EnvelopeVisible = False

  Sheets("Subtotal RTO").Protect "abc"

End Sub

---------
Note Code Tag:
In future please use code tags when posting code.
How to Post Your VBA Code it makes your code easier to read and copy and it also maintains VBA formatting.
---------
 
Upvote 0
Thank you sir for your suggestion:
This is a shared workbook and I would like to keep it protected.
 
Upvote 0

Forum statistics

Threads
1,213,521
Messages
6,114,109
Members
448,548
Latest member
harryls

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top