I wanted to do it in the following way:
Selection.FormulaR1C1 = Application.Goto (ActiveWorkbook.Sheets ("TRANSFERS"). Range ("RangePara"))
What I want is that the selection that I currently have is with the values of the dynamic range that I create in the sheet transfers called "RangePara".
The complete code would be:
Sheets("INVENTARIO").Select
ActiveSheet.Range("A1").Select
Range("A1").End(xlDown).Offset(500, 0).Select
ActiveCell.Value = "PARA"
ActiveCell.Offset(1, 0).Select
Range(ActiveCell.Offset(0, 0), ActiveCell.Offset(500, 0)).Select
Selection.FormulaR1C1 =
Application.Goto(ActiveWorkbook.Sheets("TRASLADOS").Range("RangePara"))