Macro que permita filtrar en una hoja protegida
Actualmente utilizo un macro que me registra hora y bloquea las celdas. Necesito que el documento me permita filtrar pero al estar bloqueado no me permite. En la columna que deseo filtrar se van anadiendo datos de un data validation pero no es permitido el filtrar luego del seleccionar la data del validation.
El codigo que utilizo es el siguiente.
f Not isect Is Nothing Then
If isect.Value <> "" Then
Me.Unprotect Password:="123"
If isect.Offset(0, 7) = "" Then isect.Offset(0, 7).Value = tiempo
Me.Protect Password:="123"
End If
End If
Set isect = Application.Intersect(Target, Range("l5:l100"))
If Not isect Is Nothing Then
If isect.Value <> "" Then
Me.Unprotect Password:="123"
If isect.Offset(0, -3) = "" Then isect.Offset(0, -3).Value = tiempo
Me.Protect Password:="123"
End If
End If
Set isect = Application.Intersect(Target, Range("l5:l100"))
If Not isect Is Nothing Then
If isect.Value = "SF" Then
Me.Unprotect Password:="123"
isect.Offset(0, -3).Value = ""
isect.Offset(0, -4).Value = ""
Me.Protect Password:="123"
End If
End If
Set isect = Application.Intersect(Target, Range("l5:l100"))
If Not isect Is Nothing Then
If isect.Value = "ERROR" Then
Me.Unprotect Password:="123"
isect.Offset(0, -3).Value = ""
isect.Offset(0, -4).Value = ""
Me.Protect Password:="123"
End If
End If
End Sub