Percentage Increase/Decrease

% Increase/Decrease

if(empty(prop("Start")) and prop("Start") != 0 or empty(prop("End")) and prop("End") != 0, "", if(prop("Start") == prop("End"), "No Change", format(round(abs((prop("Start") - prop("End")) / prop("Start")) * 10000) / 100) + "% " + if(prop("Start") < prop("End"), "increase", "decrease")))

Emoji Version

if(empty(prop("Start")) and prop("Start") != 0 or empty(prop("End")) and prop("End") != 0, "", if(prop("Start") == prop("End"), "🔹 No Change", if(prop("Start") < prop("End"), "🔺  ", "🔻 ") + format(round(abs((prop("Start") - prop("End")) / prop("Start")) * 10000) / 100) + "% "))

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By Ben • Latest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>