View Single Post
Old 04-12-2023, 05:53 PM   #1073
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,110
Karma: 77213681
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
I am making a formula that displays some statistics:

Code:
program:
strcat(
	$author, ' - ', $title, character('newline'),
	'Chapter Count: ', $$#chaptercount, character('newline'),
	'Page Count: ', $$#pagecount,character('newline'),
	'Average Pages per Chapter: ', format_number((divide($$#pagecount, $$#chaptercount)), '{0:5.2f}')
	);
Click image for larger version

Name:	2023-04-12 18_56_07-Formulas.png
Views:	835
Size:	8.4 KB
ID:	201004

If I run it on multiple books, it only displays information for one. How should I change the template to display information for each selected book?

Last edited by ownedbycats; 04-12-2023 at 05:56 PM. Reason: adding screenshot
ownedbycats is offline   Reply With Quote