I’m having a problem with searching on an integer column of check type on a form using a method - when I search 1 or “1” in the column and then ask for the omitted records, no records are returned. I know about half of the records have this column empty. However, when I sort on this column, the column is correctly ordered.
What you are suggesting would work well in a loop, Marcel, but I was thinking more of a method search to get to the empty integer records:
forms[frmName].controller.find();
forms[frmName].i_printed_already = "null";
forms[frmName].controller.search();
var c = databaseManager.getFoundSetCount(foundset); // this always returns zero...
Related question: Is there a reason why, after doing the search on the form using ‘^’, the menu item ‘Show omitted records’ returns nothing? Same result when using a method…