Quote:
Originally Posted by Terisa de morgan
So, you color a column based on value? Or is is something special for ratings? I like it.
|
Ratings is just a fancy-looking integer column. Here's how I did it:
Code:
program:
r = $#ratings;
if r >=#4 then '#00ff00'
elif r >=#2 then '#ffff7f'
elif r >=#0 then '#ffaa00'
fi
Quote:
Originally Posted by Karellen
I didn't know you could do half star ratings in Calibre.
My drop down box only allows me to select 1-5 stars. How do you get half star ratings?
|
You need to use a custom ratings column instead of the default one. I switched because a 10-point scale is a bit more useful to me.