Unable to use Macros when worksheet is locked

Shinianne

New Member
Joined
Aug 6, 2018
Messages
24
Office Version
  1. 365
Good day,


I'd like to ask for your kind assistance please, I couldnt use the macros on this sheet when i lock the worksheet is there a work around on it?, even if I sent the macros unlocked. can anyone help me please thank you so much. below are the Macros i use in a sheet.

Sub Resolved()
'
' Resolved Macro
'


'
ActiveSheet.Range("$A$9:$E$134").AutoFilter Field:=5, Criteria1:="Resolved"
End Sub


Sub Onhold()
'
' Onhold Macro
'


'
ActiveSheet.Range("$A$9:$E$134").AutoFilter Field:=5, Criteria1:="On-Hold"
End Sub
Sub Transferred()
'
' Transferred Macro
'


'
ActiveSheet.Range("$A$9:$E$134").AutoFilter Field:=5, Criteria1:= _
"Transferred"
End Sub
Sub Chat()
'
' Chat Macro
'


'
ActiveSheet.Range("$A$9:$E$148").AutoFilter Field:=4, Criteria1:="Chat"
End Sub
Sub Phone()
'
' Phone Macro
'


'
ActiveSheet.Range("$A$9:$E$148").AutoFilter Field:=4, Criteria1:="Phone"
End Sub
Sub Self()
'
' Self Macro
'


'
ActiveSheet.Range("$A$9:$E$148").AutoFilter Field:=4, Criteria1:= _
"Self-service"
End Sub
Sub Clear()
'
' Clear Macro
'


'
ActiveSheet.ShowAllData
End Sub
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
You use ActiveSheet.Unprotect at the start and Activesheet.Protect at the end of the code.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,560
Members
449,089
Latest member
Motoracer88

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