Agregar dos funciones a esta macro
Estoy tratando de agregar a esta macro:
Sub Borrar_celdas_Desbloqueadas()
ActiveSheet.Protect Password:="1"
Dim r As Range
For Each r In Selection
If r.Locked = False Then r.ClearContents
Dim img As Shape
On Error Resume Next
For Each img In ActiveSheet.Shapes
If Not Application.Intersect(img.TopLeftCell, Selection) Is Nothing Then
If img.Type = msoPicture Then img.Delete
End If
Next
Next
End Sub
En las celdas que estan debloqueadas, estas dos funciones:
Selection.Interior.Color = RGB(255, 255, 255)
Selection.Font.Color = RGB(0, 0, 0)
Y no soy capaz.
1 respuesta
Respuesta de Elsa Matilde
1