Hi, I think there is a bit of bit of a misunderstanding here between metadata and filenames.
If we look at FixSongsReport0248, we see the metadata is actually 100% correct, the album is already fully matched to the MusicBrainz album with correct metadata for all tracks
The problem is simply that is a 2 CD release and the filename does not include the disc no only the track no and therefore you see multiple files with the same trackno. So all you needed to do was run the Rename Files task with a suitable mask to fix the filename.
But instead you deleted various fields such as title and trackno then eventually with FixSongsReport0256 nearly got back to your starting point, but it hasn’t matched one track properly.
What you need to do is first fix metadata:
- Select Fix Songs task
- Modify For songs already fully matched to the new default Rematch if only Partial Match
- Select Start (to sort out the one file that has no title)
Then rerun Rename Files so includes discno or singledisctrackno:
I noticed in your last Rename Files report RenameFiles00195 you used a custom rename mask called Genre/Composer/Album/Track - Title so what you want to do is modify this mask to include either include discno as well as trackno, or use singledisctrackno which treats the tracks as if on a single disc so in this case would label 1-59
- Select Preferences
- Select Filename masks tab and find the Genre/Composer/Album/Track - Title mask


Now modify from
ifnotempty(genre,'/')
+ ifnotempty(composer,'/')
+ ifnotempty(album,'/')
+ ifnotempty(pad(trackno,2),' - ')
+ title
to either
ifnotempty(genre,'/')
+ ifnotempty(composer,'/')
+ ifnotempty(album,'/')
+ ifnotempty(pad(discno,2),' - ')
+ ifnotempty(pad(trackno,2),' - ')
+ title
or
ifnotempty(genre,'/')
+ ifnotempty(composer,'/')
+ ifnotempty(album,'/')
+ ifnotempty(pad(singledisctrackno,2),' - ')
+ title