Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Shong,
Thank you so much for the code, will it replace only the last before column value as null?, because Am not sure of the column
ncount=row1.c.getColumnCount();
for(int i=0;i<ncount;i++){
column=row1.c.getColumnMetadata(i);
columnName=column.getName();
String columnValue=(String)row1.c.getColumnValue(columnName);
if(columnValue.contains("0000")){
row1.c.setColumnValue(i, null);
}
}