What is the easiest to find duplicate notes, i.e. notes with the same name?
Have you tried isDuplicateName()?
just one way to goβ¦
FindDups.tbx (132.3 KB)
there are two stamps to try itβ¦
4 Likes
To make it work correctly with any names (including the β:β, β&β etc) I tweaked the function setAgentToNoteName_db (added more quotation marks β"β¦"β):
function setAgentToNoteName_db(theName){
doDebugLog_db("New Name: " + theName);
$AgentQuery("findSpecificNote") = "$Name=='" + theName + "';";
}