Is there a column for "rating"

The reason I ask, I would like to use this mp3tag program to work with my music files, it's so much faster than slow windows explorer.

With mp3tag, I am able to sort by artist, by album etc. But, what I am looking for is a column to rate my songs, so that I can take the highest songs and make a playlist out of them. Is this possible?

A look at the help would solve most of the problems:
Which field would be used for rating? See Tag Field Mappings – Mp3tag Documentation
How to create a column: see File List – Mp3tag Documentation
How to get a list of files with a particular rating see the filter: Filter and Search – Mp3tag Documentation

Thank you- I am not that good with computer mapping, but was able to create a customized "rating" column. I would like to rate the songs from 1 to 5 stars. I don't think I selected the correct RatingMM method. I made a screen shot to show you.
image

Looks OK to me.
Doesn't it work?

I posted an example of what I am looking at- below you can see the song "Big Sleeper" I ranked as 5, but there is no field at the left of the screen that shows that rating. Perhaps all the fields on the left side of the screen are fixed? Also, I was hoping it would show 5 stars, but I'll take a 5.

Customization is the buzzword here.
See the help on the options for the tag panel:

Also, try to right-click into the grey area of the tag panel to open the customization dialogues directly.

See this thread on how to show numbers as stars in the rating column:

In case anyone wants to know more about this, I have found that Windows Explorer is a very clunky method with which to review your music files. I have been able to use mp3 tag to organize albums, get album artwork, etc. I have found it to be a great help.

Now I am in the process of "whittling down" all my music files. I have been a victim of downloading entire albums which bloat my collection. In all reality, there are usually only 3-5 songs per album that I want to keep. That is where the star rating comes in.

It would be nice to right click on a song, play- windows media player pops up- and if the song is a "keeper", then I can simply rate it using the rating column, if I can ever figure out how to get it to work!!

Before you start rating your tracks ...
check first which player actually adopts the ratings found in a file.
I know that iTunes does not.
I am not sure about WMP.
And then, if you rate files in a player ... does it write that information back to the files so that you can recycle that information?

I have totally disassociated with itunes! We are in the midst of a messy divorce LOL!

Since their refusal to support the ipod classic, I have since gone to the sandisk mp3 player and have kept all my music files on my computer and use the window media player to playback music. I can perhaps rate my songs in media player, I just thought it would be a nice feature if mp3 tag also let me do that. I will check to see if the rating in WMP carries over to windows explorer.

Update- unfortunately when I rate a song 5 stars in Windows Media Player, the info doesn't carry over to my windows explorer file. I'll keep trying until something works!

In WMP check if the Options>Media library settings "Keep ratings as global ratings" and "Write modifications to file" helps you.

If not: you can create an automatic playlist with a certain rating which in return you can save as static playlist which then again can be loaded into MP3tag where you can set the stars in the files.
These ratings should then appear in the Windows Explorer.

I think there was a problem with WMP that it removes user-defined fields .... so the setting to write modifications to files should be used with care.

This thread is 2 years old but it is in the top results of google search so might help people, or maybe some people might help me to do this better.

So I found out that none of the Rating tags are any good. The problem for me is Windows11 has stopped the ability to change tags in the Windows Explorer. So I want to use mp3tag because I already use it for my tagging. So I found this thread which helped me and I found a solution.

First of all the tag that Windows shows in Explorer is called: POPULARIMETER
So I add that to the left from Options > Tag Panel > New and add a new one.
The problem is the value will be like this:
1 Star = 1
2 Stars = 104
3 Stars = 154
4 Stars = 205
5 Stars = 255

This is tricky to change manually, but it's good enough for me for the time being, Also, I wrote a command that you can use to translate this into a star rating on the right hand side. Right click on the top column, then Customize Columns. Then in there click new
Name = Rating
Value = if($eql(%popularimeter%,'1'),1,$if($eql(%popularimeter%,'104'),2,$if($eql(%popularimeter%,'154'),3,$if($eql(%popularimeter%,'205'),4,$if($eql(%popularimeter%,'255'),5,)))))
Field = %rating%

This will use a set of 5 nested IF statements to translate the numbers into star ratings. I would love this to be built into the software because since Windows has cocked it up, it would be nice to be able to manage them moire easily in this tool.

cant thank mp3tag devs enough for this software, it's the best <3

This could also be translated with a less complicated $replace() function:
$replace(%popularimeter%,255,*****,205,****,154,***,104,**,1,*)

The field should be %popularimeter% - RATING is a user-defined field that probably no player reads.

Hey ohrenkino. Well that Field part isn't actually what it is looking up. I think thats just used for if you want to rename files with rating in the filename etc? Not sure, but the actual field I used is in the IF statement already, which is the same one you mentioned.

Cheers for the replace code. it did work the way I had it but, the issue is the Tag Panel. Because if I want to set it to 3 stars I have to go into my saved notepad file and find out what number is 3 stars. Then write in 154. I thought since Windows11 uses this field to display the rating in explorer, then maybe the software can allow for editing of this value? I've no idea why they made it read only, M$ can really be annoying sometimes.
It would also be cool if mp3tag could migrate ratings between different standards. I don't see winamp there, so I assumed it's saved externally to the file?

If M$ just enabled write editing to this attribute it would save all this trouble.

Please have a look at the description of the field POPULARIMETER in the documentation

Also see the description of RATING MM which says

Abstraction on POPULARIMETER as used in MediaMonkey. Track rating from 1 = Bad to 5 = Very good. You can also enter stars * (and - for half stars) for rating the track. Use Options → Tags → Advanced to always display POPULARIMETER values.

So perhaps you might like to use that field in the tag panel.
In the end, all data is written to POPM.

And for the use of FIELD and VALUE in the file list see

MM rating doesn't show in windows explorer though. Thanks for your help. I think for now I need to find myself an easier solution. At least I can change them for the time being now using mp3tag, at least until I find an easier way. cheers