Error con macro no encuentro error
Necesitaría ayuda con la siguiente macro me da error y no encuentro la solucion quiero borrar varias hojas de un libro
Sub borrarvariashojas()
'deja limpio el rango S:AA
Sheets("RESULTADOchoco").Select
With Range("a:AA")
.UnMerge 'quita posibles combinaciones
.Clear 'limpia todo
End With
For Each img In ActiveSheet.Shapes
img.Delete
Sheets("RESULTADOchoco1").Select
With Range("a:AA")
.UnMerge 'quita posibles combinaciones
.Clear 'limpia todo
End With
For Each img In ActiveSheet.Shapes
img.Delete
Sheets("RESULTADOnequik").Select
With Range("a:AA")
.UnMerge 'quita posibles combinaciones
.Clear 'limpia todo
End With
For Each img In ActiveSheet.Shapes
img.Delete
Sheets("RESULTADOharinas").Select
With Range("a:AA")
.UnMerge 'quita posibles combinaciones
.Clear 'limpia todo
End With
For Each img In ActiveSheet.Shapes
img.Delete
Sheets("RESULTADOleche").Select
With Range("a:AA")
.UnMerge 'quita posibles combinaciones
.Clear 'limpia todo
End With
For Each img In ActiveSheet.Shapes
img.Delete
Sheets("RESULTADOconfi").Select
With Range("a:AA")
.UnMerge 'quita posibles combinaciones
.Clear 'limpia todo
End With
For Each img In ActiveSheet.Shapes
img.Delete
Next
End Sub
¿Si alguien me puede ayudar?