Hi I have been looking for a way to grab the title and put it in the artist tag, while cutting it off till the dash.
So:
Title:
Aerosmith - Hole in my soul
Would convert to:
Artist:
Aerosmith
I know I can use: convert / tag to tag.
Then I wanted to use format string:
$left(%title%,$find("-",%title%)-1)
(which would mean, grab all characters left from tag title, until the dash). At least that would it mean in excel. Any idea how I can achieve this in MP3tag?
ARTIST <== $left(%TITLE%,$sub($strstr(%TITLE%,' -'),1))
Because you know the Excel scripting language, so you should be able to understand the Mp3tag scripting language as well, see Mp3tag manual help pages.