Notion Template: Subscription Tracker And Calculator
*Note: If you are new to formulas, this simple database may be a good place to start experimenting.
The Properties
Included is a monthly cost property and a yearly cost checkbox. If a subscription is paid yearly, I will calculate the monthly cost manually.
The removal checkbox will trigger a new cost. Essentially, if remove is checked, new cost will be empty.
The New Cost Formula
if(prop("Remove") == false, prop("Monthly"), toNumber(""))
Formula Breakdown
If the “Remove” property is empty, show $ monthly cost
Otherwise, show an empty space.
Why is the empty space wrapped around a toNumber function? We’re dealing with numerical values and sums, so the empty space needs to also be a numerical value. This function converts an empty space (““) from text to a number.