Notion Formula 101: Find Difference Between Values

Screen+Shot+2020-08-03+at+10.58.58+AM.jpg

🍊 Find The Difference

If you’re looking for the solution to discrepancies between two or more values in Notion, use the functions abs, min, max, and subtract. And remember, Notion can only calculate values in a table’s row. For column calculations, a built in column calculation button is provided, however, is more limited than row calculations.

Find The Largest Number

max(prop("Value 1"), prop("Value 2"), prop("Value 3"))

Screen Shot 2020-08-03 at 11.03.17 AM.png

Find The Smallest Number

min(prop("Value 1"), prop("Value 2"), prop("Value 3"))

Screen Shot 2020-08-03 at 11.04.19 AM.png

Difference Between Two Values

abs(prop("Value 1") - prop("Value 2"))

Screen Shot 2020-08-03 at 11.11.49 AM.png

Difference Between Highest And Lowest Number

max(prop("Value 1"), prop("Value 2"), prop("Value 3")) - min(prop("Value 1"), prop("Value 2"), prop("Value 3"))

Screen Shot 2020-08-03 at 11.12.42 AM.png