Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How to filter rows of an ITable by checking their column values?

checking column filter rows values
0
Posted

How to filter rows of an ITable by checking their column values?

0

By implementing the interface IRowFilter it is possible to query column values and to return either true if this row should be accepted or false if it should be filtered out. IRowFilter rowFilter = new IRowFilter() { public boolean accept(IRowValueProvider rowValueProvider) { Object columnValue = rowValueProvider.getColumnValue(“COLUMN1”); if(((String)columnValue).

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123