Hello! I'm currently in the process of moving all of my book tracking away from Goodreads and into Notion. I have pretty much 98% of it done apart from one of my favourite things about Goodreads; the challenge tracker.
I'm looking for a formula that will tell me how many books behind/ahead or if I'm right on track with my goal for the year based on the current date and my books read so far.
Here's the properties I currently have:
And here's the formula for the Reading Progress (just if this helps at all):
if(prop("Total Read") == 0, "You’ve not started this challenge yet.", if(prop("Total Read") < prop("Reading Goal"), "You've read " + format(prop("Total Read")) + "/" + format(prop("Reading Goal")) + " books so far! Keep going!", "You've read " + format(prop("Total Read")) + "/" + format(prop("Reading Goal")) + " books! Congratulations!"))
If I'm being completely honest I don't really know what I'm doing with formulas, I'm just typing and hoping for the best, but I can't seem to figure this out.