0๏ธWhy are my rollups on NotionApps showing the value as zero (0)?

When rollups are used with average, min, max, sum and other such calculations, Notion does not return the correct value of these rollups to NotionApps.

In these cases, we suggest using a Formula instead of a Rollup. You can re-create average, min, max, and sum calculations with formulas.

For example, to calculate the average number of days each Project's Tasks take, you could create a formula like so:

sum(prop("Tasks").map(current.Days))/prop("Tasks").length()

To calculate the minimum number of days each Project's Tasks take, you could create a formula like so:

min(prop("Tasks").map(current.Days))

If you have any questions, please reach out to us at help@notionapps.com.

Last updated