Solved
alternate for loop
What can be used instead of for loop to loop through 10000 records which is present in Infotable?
What can be used instead of for loop to loop through 10000 records which is present in Infotable?
Hi ,
If you need to find row based on some column value , you can use following snippet.
let params = {
t: undefined /* INFOTABLE */,
query: undefined /* QUERY */
};
// result: INFOTABLE
let result = Resources["InfoTableFunctions"].Query(params);
Query can be created as in link .
Hope it helps!!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.