in reply to Re: Filter rows according to certain criteria based on CV
in thread Filter rows according to certain criteria based on CV

Yes I have :) $ratio1 give me one column. And $variable1 give me all the columns generated together. Output beautifully according to what I want. Thanks to your guidance!

PS: Initially I couldn't because I forgot to add in the simple line:

$variable1 ='';
inside the for loop to erase the previous line.

Replies are listed 'Best First'.
Re^3: Filter rows according to certain criteria based on CV
by Anonymous Monk on Mar 26, 2014 at 08:48 UTC

    Yes I have :) $ratio1 give me one column. And $variable1 give me all the columns generated together. Output beautifully according to what I want. Thanks to your guidance!

    You know that is impossible with the code you posted, right?

      Yes!. I forgot to add in
      $variable1 =' ';
      in my first post! :) (updated code!)