Help for this page

Select Code to Download


  1. or download this
    until ($s_counter == $permanent_counter)
    {
     $Sheet->Cells(1,1)->{Value} = "somevalue";
      $s_counter=$s_counter+1;
    }
    
  2. or download this
            $Sheet->Cells($s_counter,1)->{Value} = "somevalue";
    
  3. or download this
            $Sheet->Cells(1,1)->{Value} = "somevalue";