Infotable columns quering
Hi all in have a infotable in which a column(x) is a boolean. i want to write a service in which any of the row in infotable column(x) is true need to return true. Thanks in advance
Hi all in have a infotable in which a column(x) is a boolean. i want to write a service in which any of the row in infotable column(x) is true need to return true. Thanks in advance
Hello,
There are several ways you could do this that I can think of. Here is one;
let infoTable = yourInfoTable;
let findRow = {
"YourColumnName":true
};
let foundRow = infoTable.Find(findRow );
result = false;
if (foundRow.length > 0) {
result = true;
}
There are also filter and query functions if you look in the "Snippets".


There are also some arrow functions that could possibly be used as well.
Hope this gives some inspiration and guides you to something that works for you.
Regards,
Jens
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.