Skip to main content

This may be obvious to many, but it eluded me until today…


It is a HELL OF A LOT easier to code (and debug) formulas in Textedit (or the text editor of your choice), inserting returns between segments (B).


When you paste your code into Airtable, it’ll smartly remove those returns and create the code block we’re used to seeing (A).




A


IF({Auto-Status} = “Awaiting Review”, “ 🔍 ”,IF({Auto-Status} = “Complete”, “ 🏁 ”,IF({Auto-Status} = “Design”, “ 🎨 ”,IF({Auto-Status} = “Released to Supplier”, “ 🚀 ”,IF({Auto-Status} = “On Our Radar”, “ 📡 ”,IF({Auto-Status} = “Production”, “ 📐 ”,IF({Auto-Status} = “Cancelled”, “ 💀 ”,IF({Auto-Status} = “On Hold”, “ 💤 ”,IF({Auto-Status} = “Design Queue”, “ 🎨 🔜 ”,IF({Auto-Status} = “Content Needed”, “ ❓ ”,IF({Auto-Status} = “Unassigned”, “ 👥 ”,IF({Auto-Status} = “Design Route”, “ 🎨 🔃 ”,IF({Auto-Status} = “Copy”, “ ✏ ️”,IF({Auto-Status} = “Production Route”, “ 📐 🔃 ”,IF({Auto-Status} = “Production Queue”, “ 📐 🔜 ”,IF({Auto-Status} = “Retouching”, “ 💅 ”,IF({Auto-Status} = “Retouching Queue”, “ 💅 🔜 ”,IF({Auto-Status} = “Released by Production”, “ ✈ ️”,""))))))))))))))))) & " “) & IF({Rush Request} = 1, “ 🔥 ”,”")




B


IF({Auto-Status} = “Awaiting Review”, “ 🔍 ”,


IF({Auto-Status} = “Complete”, “ 🏁 ”,


IF({Auto-Status} = “Design”, “ 🎨 ”,


IF({Auto-Status} = “Released to Supplier”, “ 🚀 ”,


IF({Auto-Status} = “On Our Radar”, “ 📡 ”,


IF({Auto-Status} = “Production”, “ 📐 ”,


IF({Auto-Status} = “Cancelled”,“ 💀 ”,


IF({Auto-Status}=“On Hold”, “ 💤 ”,


IF({Auto-Status}=“Design Queue”,“ 🎨 🔜 ”,


IF({Auto-Status}=“Content Needed”, “ ❓ ”,


IF({Auto-Status}=“Unassigned”, “ 👥 ”,


IF({Auto-Status}=“Design Route”, “ 🎨 🔃 ”,


IF({Auto-Status}=“Copy”, “ ✏ ️”,


IF({Auto-Status}=“Production Route”, “ 📐 🔃 ”,


IF({Auto-Status}=“Production Queue”, “ 📐 🔜 ”,


IF({Auto-Status}=“Retouching”, “ 💅 ”,


IF({Auto-Status}=“Retouching Queue”, “ 💅 🔜 ”,


IF({Auto-Status}=“Released by Production”, “ ✈ ️”,


“”))))))))))))))))) & " ") &


IF({Rush Request} = 1, “ 🔥 ”,"")




Both work fine!

Thanks Andrew! This just helped me a LOT!


Reply