Hello,
How can we do, in a script, to apply a filter that returns records that match two conditions.
My attempts :
let filteredConcurrents = query.records.filter(concurrentEdition => {
return concurrentEdition.getCellValue('Edition Record Id')?.includes(editionAnumeroter.getCellValue('Record id'))
})
let filteredRecords = filteredConcurrents.records.filter(catego => {
return catego.getCellValue('categorie_texte')?.includes(categorie)
})
Thx for your help