Be careful. Don't put your Calibre library in GDrive. It will
break badly.
Quote:
Originally Posted by maddz
I suppose I could try and set up a column based on other columns for Read - if location is 100, then 'Finished', else if location <> null then 'Reading', else 'Unread'. I'll see.
|
I use this as a custom template function. Should work as a composite column. Change as needed.
Code:
program:
if $$#percentread >=#1 && $$#percentread <=#99
then 'currentlyreading'
elif "To Be Read" in $#readinglist && $$#percentread ==#0
then 'toberead'
elif $$#percentread >=#100
then 'read'
elif $$#percentread == 'None'
then 'undefined'
elif $$#percentread >=#0
then 'unread'
fi