Status Icons

Status Icons

From
Reddit
Status
Updating
Formulas
Share
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.
 
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!