Infotable columns quering
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
Solved! Go to Solution.
- Labels:
-
Coding
-
Troubleshooting
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
