Tag Tag does not copy entire field

I’m copying a lot of tag infos to the comments field, and it all works well except mp3tag does not copy anything after “;” which I have in quite a few fields.

For example, in Label I might have “SACD; Analogue Productions” and if I use %label% or “%label%” it will only copy SACD. Is there any way to copy both?

Thanks!

In which program do you see

Could you check the extended tags dialogue Alt-T for a single file and see how many fields you have e.g. for LABEL.
For us in the wild, a screenshot would be nice.

In Foobar, it shows up “SACD; Analogue Productions”.

I did the al+t thing, it shows up has two fields “Label” SACD and “Label” Analogue Productions - how do I make it copy both fiels (or better, all fields, because some albums have more than two labels) to the comments section? Thanks for the help!

To treat all of the multi-value-fields, do not use a plain %label% but
$meta_sep(label,\\) instead.

Or if you want to get all Label fields merged into a single COMMENT field, try
$meta_sep(label,; )

Excellent, that did the trick! Many thanks, my format string now looks like some sort of advanced code :slight_smile: