Status
ifs( !prop("Start Date"), "○ Not Started", prop("Progress") == 1, "✓ Completed", !prop("Progress") || prop("Progress") < 1 && prop("Finished"), "◇ Backlog", "☆ Playing Now" )
Old Explanation
if(empty(prop("Start Date")), "○ Not Started",
If Start Date is empty, display Not Started.
if(prop("Progress") == 1, "✓ Completed",
Otherwise if Progress equals 1 (100%), display Completed.
if((empty(prop("Progress")) or prop("Progress") < 1) and prop("Finished"), "◇ Backlog",
Otherwise if Progress is empty or less than 1 (100%) and Finished is checked, display Backlog.
"☆ Playing Now")))
Otherwise if none of the above match, display Playing Now.
Emoji
ifs( !prop("Start Date"), "🔴", prop("Progress") == 1, "✅", !prop("Progress") || prop("Progress") < 1 && prop("Finished"), "🔶", "⭐" )