int col;
int row;
for col = 1 to #rpt0.ColCount() step 1
for row = 1 to #rpt0.RowCount()+1 step 1
if #rpt0.Val(col,row) <= -99999 then
#rpt0.SetVal(col,row,0);
endif
next
next
int col;
int row;
for col = 1 to #rpt0.ColCount() step 1
for row = 1 to #rpt0.RowCount()+1 step 1
if #rpt0.Val(col,row) <= -99999 then
#rpt0.SetVal(col,row,0);
endif
next
next