|
Hola Karl, tarate de hacer lo me dijiste te mando como lo copie a ver si podes darte cuenta lo que esta mal, me dice que hay un error de compilacion, te lo mando a ver si me podes ayudar y asi me funciona, gracias nuevamente
For x = 1 To 11
Sheets("MAINER", "DE LA ROSA", "LUCHO", "LA ROSA", "ALEM", "SAENZ", "MP", "MIRIAM", _ "MEIER", "LOPEZ", "MABEL", "EL FERRE" + CStr(x)).Select
Range("A5:A7000").Select
With Selection.Font
.Name = "Arial"
.Size = 10
.Italic = False
End With
Range("A5:D5").Select
Range("A5:D7000").Select
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
Selection.Borders(xlEdgeLeft).LineStyle = xlNone
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlEdgeBottom).LineStyle = xlNone
Selection.Borders(xlEdgeRight).LineStyle = xlNone
Selection.Borders(xlInsideVertical).LineStyle = xlNone
Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
Next
Sheets("Hoja1").Select
End Sub
|