Shopping List

Shopping List

From
Reddit
Status
Updating
Share
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.
 
By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!
By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!