<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a5a1e3ce-00fa-46e4-9a75-58c2aed9e8ce/Notion_Fundamentals_with_Thomas_Frank_-_Avatar_2021.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a5a1e3ce-00fa-46e4-9a75-58c2aed9e8ce/Notion_Fundamentals_with_Thomas_Frank_-_Avatar_2021.png" width="40px" /> The example database below calculates several properties of a cube given a specific volume.

Created by Thomas Frank | Learn Notion Formulas | Notion Basics | Templates | Twitter

</aside>

Cube Calculator

// Side Length
format(round(cbrt(prop("Volume (m³)")) * 100) / 100) + "m"

// Side Area
format(round(100 * cbrt(prop("Volume (m³)")) ^ 2) / 100) + "m²"

// LSA (Lateral Surface Area - 4 sides)
format(round(4 * cbrt(prop("Volume (m³)")) ^ 2 * 100) / 100) + "m²"

// TSA (Total Surface Area - all 6 sides)
format(round(6 * cbrt(prop("Volume (m³)")) ^ 2 * 100) / 100) + "m²"

// Face Diagonal Length
format(round(cbrt(prop("Volume (m³)")) * sqrt(2) * 100) / 100) + "m"

// Solid Diagonal Length
format(round(cbrt(prop("Volume (m³)")) * sqrt(3) * 100) / 100) + "m"

© Thomas Frank