Help for this page

Select Code to Download


  1. or download this
    Workbooks.Open Filename:="C:\Proyecto\csv\T3683.csv.xls"
        Rows("1:10").Select
    ...
        Range("B6").Select
        ActiveCell.FormulaR1C1 = "Report"
        Range("C7").Select
    
  2. or download this
    use Win32::OLE;
    use constant xlDown => -4121;
    ...
    $_app_object->Range('B6')->Select();
    $_app_object->ActiveCell->{FormulaR1C1} = 'Report';
    $_app_object->Range('C7')->Select();