In a query made on the repeating group.
I show the number of records found in a text field.
You can show the time spent to perform this query in the database:
Example:
Found: 10 in XX seconds.
Thanks,
Dirceu M. Azevedo
In a query made on the repeating group.
I show the number of records found in a text field.
You can show the time spent to perform this query in the database:
Example:
Found: 10 in XX seconds.
Thanks,
Dirceu M. Azevedo
When the query begins (ex. an input’s value is changed) set the value of a custom state that is a “date” called loadStart to Current Date & Time. Then add a Workflow that is a “Do when condition is true”, make sure to select everytime as the time frame and then set the conditional for repeating group “is loading” is “no”. Here you need to set the value of a custom state that is a “date” called loadEnd to Current Date & Time. Now wherever you want to display “Found: 10 in XX seconds” you can put "Found: ‘Repeating Group’s List of Things:count’ in ‘loadEnd - loadStart format as seconds’ seconds.
Thanks!