For... Next

07/10/2008 - 22:14 por Manny_90 | Informe spam
Que tal.

Me gustaria aprender mas sobre como crear bucles con For.. Next. Si saben de
algun buen articulo eso me serviria muchisimo.

Hice un ejercisio pero no funciona, en la linea de "ActiveCell.Formula" me
sale un error '1004' Aplication defined or object defined error.


La formula esta bien, sin el macro la arrastro a todas las celdas y no tiene
ningun problema.





sub uno()
Range("d65536").End(xlUp).Offset(0, -1).Value = "fin"
Range("c2").Select
Set trango = Range(ActiveCell, ActiveCell.End(xlDown))
For Each Cell In trango
ActiveCell.Formula =
"=IF(D2=0,"",INDEX(E:E,SUMPRODUCT(MAX(ROW(D$2:D2)*(D$2:D2Ò-1)))))"

Next
End Sub


mUCHAS GRACIAS
 

Leer las respuestas

#1 Abraham
07/10/2008 - 22:21 | Informe spam
OJO, hablas/mencionas FOR-NEXT, pero envias un ¿ejemplo? con FOR-EACH

Sobre un "articulo" respecto a FOR-NEXT, intentaste al menos ver en la
ayuda del VBA? Usaste google para buscar algo al respecto? Te diste
una "vueltita" por el MSDN "en linea" de microsoft?

Abraham

Preguntas similares