Multi-value field not seen as such 2021-01-10 20:57:09 Checking tag consistency, noted that a number of multi-value fields* are being seen as single value (used $meta_num(field) to check).* Defined as such in Preferences > Advanced > Display > Properties dialog > Multivalues fieldsSelected a number of tracks with the same problem and the same two artists.- Tried to re-write one track manually (removed ARTIST, then rewritten) - it started to be seen as a multi-value field.- Tried to update another track with Masstagger (Format "ARTIST" using "%artist%") - it remained single value.Questions:1) How to correct a large number of tracks with fields that have this problem using Masstagger?2) Noted that the manually edited track now displays in Columns_UI with comma instead of semicolon as separator - is there a way to keep the semicolon? Last Edit: 2021-01-10 20:58:45 by pstrg
Re: Multi-value field not seen as such Reply #1 – 2021-01-11 14:32:32 Quote from: pstrg on 2021-01-10 20:57:09Checking tag consistency, noted that a number of multi-value fields* are being seen as single value (used $meta_num(field) to check).* Defined as such in Preferences > Advanced > Display > Properties dialog > Multivalues fieldsSelected a number of tracks with the same problem and the same two artists.- Tried to re-write one track manually (removed ARTIST, then rewritten) - it started to be seen as a multi-value field.- Tried to update another track with Masstagger (Format "ARTIST" using "%artist%") - it remained single value.Questions:1) How to correct a large number of tracks with fields that have this problem using Masstagger?2) Noted that the manually edited track now displays in Columns_UI with comma instead of semicolon as separator - is there a way to keep the semicolon?Answer to question 1) above required experimentation, but was found.Using Masstagger, added a command "Split "ARTIST" by ";" separator" - field became multi-value.Any other method (Copy, Format, Guess) did not work.Question 2) remains unanswered; will post it in 3r Part Plugins sub-board.
Re: Multi-value field not seen as such Reply #2 – 2021-01-11 14:45:49 For 2, use $meta_sep() -Code: [Select]$meta_sep(artist,'; ')For 1, no need for masstagger - select tracks > right-click Properties > right-click Artist > Split Values.
Re: Multi-value field not seen as such Reply #3 – 2021-01-11 15:00:57 Quote from: anamorphic on 2021-01-11 14:45:49For 2, use $meta_sep() -Code: [Select]$meta_sep(artist,'; ')For 1, no need for masstagger - select tracks > right-click Properties > right-click Artist > Split Values.Thanks!