Hola a toda la comunidad!
Tengo una macro que tiene el siguiente problema:
Range("I1").Select
ActiveCell.FormulaR1C1 = "=TODAY()"
Range("I1").Select
Selection.NumberFormat = "d-mmm"
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=
_
False, Transpose:=False
Range("I2").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = _
"=IF(RC[-2]<R1C9,""Burn"",IF(RC[-2]>=R1C9,""On Time"",""""))"
Range("H2").Select
Selection.End(xlDown).Select
Selection.End(xlToRight).Select
ActiveCell.Offset(0, 1).Select <
Problema AQUI
ActiveCell.FormulaR1C1 = "Hello"
Resulta que quiero que mediante selection.end se vaya al extremo inferior
derecho del documento editable en excel y luego a la siguiente celda a la
derecha..., ya intente usar Activecell.Offset(0,1). Select, pero esta
instrucccion me manda hasta el final de la fila IV, en donde este..., y lo
que quiero es que solo se mueva 1 celda...
gracias anticipadas!!
Isrrael
Leer las respuestas