Error 9 subíndice fuera del intervalo
En el siguiente código se realiza correctamente excepto para la valorización del if
donde C5= 2012 .(exactamente donde subraye y puse negrita)
Y me indica que " Se produce error 9 en tiempo de ejecución" que el subíndice esta fuera del intervalo.
¿Puedes darme alguna idea de que esta pasando?
Gracias
If ActiveSheet.Range("C5").Value = "2010-2011" Then
Range("saldocopivaca").Copy
Sheets("histórico").Range("A5:E5").Insert Shift:=xlDown
Range("A5"). ClearContents
Range("A6").ClearContents
Range("E5").ClearContents
Range("E6").ClearContents
Application.CutCopyMode = False
End If
If ActiveSheet.Range("C5").Value = "2012" Then
Range("saldocopivaca").Copy
Sheets("historico1").Range("A5:E5").Insert Shift:=xlDown
Range("A5").ClearContents
Range("A6").ClearContents
Range("E5").ClearContents
Range("E6").ClearContents
Application.CutCopyMode = False
End If
If ActiveSheet.Range("C5").Value = "2013" Then
Range("saldocopivaca").Copy
Sheets("historico2").Range("A5:E5").Insert Shift:=xlDown
Range("A5").ClearContents
Range("A6").ClearContents
Range("E5").ClearContents
Range("E6").ClearContents
Application.CutCopyMode = False
End If