Try something like this (Column Test1 is your data, Test2 the test column)
10, Test2 = 1, Test2 = 0 ) ); //assigns 1 if "passed", 0 if "failed", to column Test2
Summarize( A = by( :Test2 ), B = Count( :Test1 ) );
If( B[1] / B[2] > 0.5, // Here 50% is the cut-off value
dlg = Dialog( Text Box( "Column Test1 Failed" ) ),
dlg = Dialog( Text Box( "Column Test1 Passed" ) )
);
-->
Message was edited by: MS