May 22, 2020 07:41 AM
Ok, I have this script, but I need to check only for duplicates in the same table. Thoughts on what I need to add to ensure the record pulled is not self linking in linked records?
//Define the table and query
let jobTbl = base.getTable(“Caregiver Applicants”);
let appQuery = await jobTbl.selectRecordsAsync();
//Loop through the records and find the Applicant
for (let record of appQuery.records) {
let appname = record.getCellValue("E-mail");
//Define linked table and query
let applicantTbl = base.getTable("Caregiver Applicants");
let applicantQuery = await applicantTbl.selectRecordsAsync();
//Loop through linked table and match ID values
for (let appRecord of applicantQuery.records) {
if (appRecord.getCellValue("E-mail") === appname) {
let inputid = appRecord.id;
//Update field
jobTbl.updateRecordAsync(record, {
"Additional Records": [{id: inputid}]
});
}
}
}
This ends up linking the original record to itself. Ugh.
May 22, 2020 09:28 AM
You could add a filter or another condition to your if()
statement to check the record ID.
First get the record ID of the original record: appid = record.id
Then redefine your if statement to: if(appRecord.getCellValue("E-mail") === appname && appRecord.id !== appid)
May 22, 2020 09:42 AM
Hi @Kamille_Parks, @Grow_With_Jen - I tried the same as @Kamille_Parks, but there might be a problem with this. If there are 3 instances of an email, then you want each of them to link to the other two. However, the simple update clears the cell of any existing links. According to the docs you need to use the spread operator like this:
myTable.updateRecordAsync(myRecord, {
'myLinkedRecordField': [
...myRecord.getCellValue('myLinkedRecordField'),
{ id: newForeignRecordIdToLink }
]
})
to add the new array element to the existing array elements. However, I cannot get this to work :slightly_frowning_face:
The error is something like:
myRecord.getCellValue('myLinkedRecordField') is not iterable
May 22, 2020 09:50 AM
This is an alternative approach, but might not be what you are looking for. It identifies duplicates, but doesn’t show which records are connected as duplicates.
let applicantsTbl = base.getTable('Applicants');
let applicantsQuery = await applicantsTbl.selectRecordsAsync();
// make an array of all of the emails
let emails = applicantsQuery.records.map(record => {
return record.name
})
// filter to get emails which are duplicates of another
let dupes = emails.filter((item, index) => emails.indexOf(item) != index);
// refine this with Set to the unique set of duplicates
let uniqueDupes = [...new Set(dupes)];
// iterate through the records and update this with a duplicate
for (let record of applicantsQuery.records) {
for (let dupe of uniqueDupes) {
if (record.getCellValue('Email') == dupe) {
await applicantsTbl.updateRecordAsync(record, {
'Duplicate': 'This has a duplicate'
})
}
}
}
You end up with something like this:
The above approach (earlier posts) is better - will post again if I can figure it out!
May 22, 2020 10:15 AM
This is helpful, thanks!
May 22, 2020 10:16 AM
I like this idea too. They don’t necessarily need all records linked theoretically, that does leave room for error, but the existence of a duplicate is a good flag.
Jul 22, 2020 02:35 PM
Just used this script and it worked perfectly - thanks for sharing Jonathan!
Sep 28, 2020 08:17 AM
@JonathanBowen how would I adjust the code if the record name is not equal to the email, the email is one of the fields in the record?
Thanks for your help!
Sep 28, 2020 08:22 AM
Hi @Grow_With_Jen - this is the bit you want to change:
// make an array of all of the emails
let emails = applicantsQuery.records.map(record => {
return record.name
})
This should become:
// make an array of all of the emails
let emails = applicantsQuery.records.map(record => {
return record.getCellValue('NAME OF YOUR EMAIL FIELD HERE')
})
Sep 28, 2020 08:27 AM
@JonathanBowen, AMAZING! Thank you so much.