Quote:
Originally Posted by chaley
The problem is you are using text relational operators ('>=') to compare numeric values. With a text compare, 100 is less than 4 because it does a lexical comparison. You must use numeric relationals, as in '>=#'. See "Relational operators" section in The calibre template language.
|
Thank you, I had no idea this was a thing. Learned something new today