Below is a reading list database that captures books to read, reading, wish-listed and finished.
Formulas
Progress Bar
if(not empty(prop("Chapters Read")) and not empty(prop("Total Chapters")), slice("❒❒❒❒❒❒❒❒❒❒", 0, floor(10 * prop("Chapters Read") / prop("Total Chapters"))) + " ■ " + slice("❒❒❒❒❒❒❒❒❒❒", 0, 10 - floor(10 * prop("Chapters Read") / prop("Total Chapters"))) + " " + format(floor(100 * prop("Chapters Read") / prop("Total Chapters"))) + "%", "")
Days Spent Reading
if(not empty(prop("End Date")), dateBetween(prop("End Date"), prop("Start Date"), "days"), toNumber(""))