Renaming Attribute Values

Is there a way to rename an attribute value so that all notes assigned with that value show the renamed value?

Say, for example, I have a value, “tech” assigned to the attribute $Tags and I want to rename it to “technology”.

No but it is fairly simple to fix. Make an agent with query:

$Tags.contains("tech")

and this action:

$Tags = $Tags + "technical";
$Tags = $Tags - "tech";

You can even do it as one line:

$Tags = $Tags + "technical" - "tech";
4 Likes

This did the trick, thank you so much!

2 Likes