Quote:
Originally Posted by Wiggo
I have a column #series authors (thx chaley)
And I have a column symbol for more than one series author
Code:
program:
if list_count($#series_authors, ',') > 1 then
'series_authors.png'
fi
I wanted to replace list_count by list_count_field but I get an error
Code:
program:
if list_count_field('#series_authors') > 1 then
'series_authors.png'
fi
Attachment 211650
I installed Calibre 7.20.100 but as always, I have no idea.
|
Composite columns are strings, not multi-valued lists. list_count_field() would be slower than list_count(), so the it doesn't try. Doing further error checking would slow it down even more.