Vba Excel. Error en Código
Tengo el siguiente código y me da el siguiente error "Error definido por la aplicación o el objeto.
With Worksheets(2)
j = 2
Do While Not IsEmpty(.Cells(j + v, 10)) = True
.Cells(j + v, 12).Value = WorksheetFunction.Sum(.Range(Cells(j + 1, 10), Cells(j + v, 10))) / v
j = j + 1
Loop
End with
El código es para calcular la media móvil simple de un rango.