I'm trying to apply a specific [Genre] tag to files imported from a particular folder, one that corresponds to various tagging views I have. The problem I've having is that if a genre tag is already present, I'll get a dual genre separated by a semicolon, e.g., "Classical;Tagging," "Tagging" obviously being the tag I want to add to what is being imported and "Classical" being the already present genre tag.
This expression would seem to work (it does in Zelda on already imported files):
Replace([Genre],[Genre],Tagging)
Can one not overwrite tags on import but only add to them? Or is there something I'm not thinking of (likely)?
I did try a two-step [Genre] overwrite by first putting this rule into the dialogue
IfElse(!isempty([Genre],0),RemoveCharacters([Genre],[Genre],0))
and then trying to simply insert [Genre] as a second rule underneath the ifelse(). The result was the same: "Classical;Tagging."