Hello,I'm looking to make two loops nested inside each other to display a table with data grouped by a field. Do you know how to configure this? I cannot find the right data structure.Group 1row 1 row 2Group 2row 3row 4
Hello,
I’m back with this script. I now have an error and it doesn’t seem to have changed anything in my database.
The error is :
TypeError: Cannot read properties of null (reading ‘includes’)
at on line 84
at main on line 83
let filteredRecords = ...
Thank you @Adam_C for the quick response.
The script returns an error on line 92:
TypeError: filteredRecords.records is not iterable
at main on line 92
line 92 is : for (let record of filteredRecords.records) {
An idea ?
Hi @Adam_TheTimeSavingCo,
Thank you very much for the script! I’m trying to adapt it to my needs but I need your help.
I would like to apply the ranking only to filtered records.
The filtered records come from a linked table. I have modified your scr...