Easiest way to find duplicate notes, i.e. notes with the same name

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 + "';";
}