Help for this page

Select Code to Download


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