Re leyendo bien tu pregunta no se si la macro te sirvió de algo je je
Te dejo aquí 2 más
Esta hace lo mismo que la otra pero es más resumida:
Sub Limpiar_AJ()
'
' Limpia,Borra celdas combinadas,elimina bordes
'
Application.ScreenUpdating = False
Columns("A:J").Select
With Selection
.ClearContents
.MergeCells = False
End With
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Selection.Borders.LineStyle = xlNone
Range("A1").Select
Application.ScreenUpdating = True
End Sub
Esta elimina las columnas desde la A hasta la J creo que era esto lo que tu querias jeje
Sub Eliminar_AJ()
'
' Elimina filas de A hasta la J
'
Application.ScreenUpdating = False
Columns("A:J").Select
Selection.Delete Shift:=xlToLeft
Range("A1").Select
Application.ScreenUpdating = True
End Sub
Saludos =)