Tasks

Icon + Status

if(prop("Status") == "Queue", "➡️ ", if(prop("Status") == "In Progress", "🔷 ", if(prop("Status") == "Completed", "✅ ", if(prop("Status") == "Archived", "🗄 ", "")))) + prop("Status")

Icon

if(prop("Status") == "Queue", "➡️", if(prop("Status") == "In Progress", "🔷", if(prop("Status") == "Completed", "✅", if(prop("Status") == "Archived", "🗄", ""))))

Only Queue + In Progress

if(prop("Status") == "Queue", "➡️ ", if(prop("Status") == "In Progress", "🔷", ""))

if(prop("Status") == "Queue", "➡️"

If Status is set to Queue display ➡️

, if(prop("Status") == "In Progress", "🔷"

Otherwise if Status is set to In Progress display 🔷

, ""))

Otherwise display nothing.

<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>