¿Se puede utilizar 2 contadores en un mismo "For"?
Me gustaría saber si hay alguna forma de utilizar un mismo "For" con dos contadores.
Parte del código lo pongo, ya que estoy insertando imágenes con nomenclatura numérica (1,2,3,4,5) y las estoy insertando cada 4 Celdas, empezando con la celda "B6", después la siguiente en "B10", después "B14", "B18"... Etc
Parte del código que es para la imagen es este:
Path = Sheets("Main").Range("C11")
For i = 0 To 6
'n = 3 + i*2
Set rngCell = Worksheets("Other Printouts").Range("B" & n * 2)
Li = Path & i & ".jpg"
Set img = Worksheets("Sheet1").Pictures.Insert(Li)
With img
.Left = rngCell.Left
.Top = rngCell.Top
.Width = rngCell.Width
.Height = rngCell.Height
.Placement = 1
.PrintObject = True
End With
Next i
-----------------------------------
Entonces en lugar de utilizar una variable ("n") que depende del contador "i", no se si haya algo así:
For i = 0 to 6 AND n = 6 Step 4
Xxxxxxxxx
Xxxxxxx
Next i,n
------------------------------------