Hello,
I think i manage to solve this.. in not very smart way, but it works.
I create an average data column and select the rows that he average == 0
then delete off the rows.
cctable << New Column( "DataAverage",Numeric,Continous,Format( "Best", 9 ),
Formula( Col Mean(:Data, :Folder)));
cctable << Row Selection(Select where( :DataAverage == 0));
cctable << delete rows();
cctable << delete column(column("DataAverage"));
This serve the purpose,
but if anybody have a more robust way of scripting this, do let me know.
Regards
Ashraff