Shopping Lists

Under/Over?

or(empty(prop("Cost")), empty(prop("Budget"))) ? "" : if(prop("Cost") <= prop("Budget"), "🍏", "🍎")

or(empty(prop("Cost")), empty(prop("Budget")))

Check to see if either Cost or Budget are empty.

? ""

If either or both are empty, display nothing.

: if(prop("Cost") <= prop("Budget"), "🍏", "🍎")

Otherwise, check to see if Cost is less than or equal to Budget. If it is (under budget), show a green apple. If it isn't (over budget), show a red apple.

<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 BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>