I have the first formula below, that returns a list of links.
Codes.Filter(Jurisdiction=thisRow.Jurisdiction AND [Doc Type]=“Integrated”).Reference
Output :
Wayback Machine ,
http://170.94.37.152/REGS/007.24.20-003F-21408.pdf ,
Wayback Machine ,
http://170.94.37.152/REGS/007.24.20-002F-21407.pdf ,
I want to check if these links contain certain word like ‘web.archive.org’. I used the code below :
RegexMatch(Codes.Filter(Jurisdiction=thisRow.Jurisdiction AND [Doc Type]=“Integrated”).Reference, “web.archive.org”)
However, it only returns a single boolean value. I expect it to return a list of boolean values. What shall I do ?