Now I get it; now I have those exported files the way I want them to be
I've just put
$filename(C:\Users\***\Documents\! Mp3tag export list.txt,utf-16)in every one that did not had already specification for a path / name
Almost
When used for sorting in columns, the stevehero code
$replace($replace($replace(%title%,'[',1),'(',2),'{',3)gives order like this
Song A
Song A + Song B
Song A
Song A ()
Song A {}
Song A Part 2
which is almost correct [because the plus sign, indicating in my book a second song, should be shown after the variations of only the first song are listed]. So as I mentioned, I modified the code to
$replace($replace($replace($replace(%_FILENAME%,'[',1),'(',2),'{',3),'+',4)which gave me the order which I was after
Song A
Song A
Song A ()
Song A {}
Song A + Song B
Song A Part 2
[Yes, the "Song A Part 2" could be also considered as variations of "Song A", but not in my book; that is not important here]
But if I go further with modification to the form of
$replace($replace($replace($replace(%_FILENAME%,'[',1),'(',2),'{',3),'+',4)(%ARTIST%)the code goes bunkers. That additional ARTIST parameter do gives me what I need, which is order of also artists. So now the code will make a list
Song A ### by performer ### Band X
Song A ### by performer ### Band Y
Song A ### by performer ### Band Z
Song B ### by performer ### Band X
Song B ### by performer ### Band Y
Song B ### by performer ### Band Z
But unfortunately it will also at the same time turn the working order which I was after into faulty order
Song A
Song A ()
Song A {}
Song A + Song B
Song A Part 2
Song A
So the last two lists above are produced by the same code, but I separated the two orders [of FILENAME and ARTIST] to show more clearly, what is happening. But in broader spectrum what I need is this
Song A ### by performer ### Band X
Song A ### by performer ### Band X
Song A () ### by performer ### Band X
Song A () ### by performer ### Band Y
Song A () ### by performer ### Band Z
Song A {} ### by performer ### Band X
Song A + Song B ### by performer ### Band X
Song A Part 2 ### by performer ### Band X
but somehow I get ending up with this
Song A ### by performer ### Band X
Song A () ### by performer ### Band X
Song A () ### by performer ### Band Y
Song A () ### by performer ### Band Z
Song A {} ### by performer ### Band X
Song A + Song B ### by performer ### Band X
Song A Part 2 ### by performer ### Band X
Song A ### by performer ### Band X
with the code
$replace($replace($replace($replace(%_FILENAME%,'[',1),'(',2),'{',3),'+',4)(%ARTIST%)
Simply: what should be on the top [and is when using
$replace($replace($replace($replace(%_FILENAME%,'[',1),'(',2),'{',3),'+',4)now gets dropped to the bottom because of that addition of ARTIST