Hello,
I am trying to create a formula that automatically assigns a Team based on Column 1 which contains company names. I am running into trouble, it seems, due to the length of my formulas. I am wondering if anyone can assist.
Below is the formula I created in Word, it works in Airtable when I shorten it to cover only half the companies. I have tested with several different orders to make sure it isn’t just the next company in the series that is causing an error. I have about 20 companies I am assigning 1 of 2 teams to.
SWITCH({Distributor Name},
“Company Name”,“Team 1”,
“Company Name”,“Team 1”,
“Company Name”,“Team 1”,
“Company Name”,“Team 1”,
“Company Name”,“Team 1”,
…
“Company Name”,“Team 2”)
I have also tried IF formulas such as the below, however no matter how I’ve formatted them they automatically cut it short and only follow the first 2 expressions.
IF({Distributor Name}=“Company Name”,“Team 1”),
IF({Distributor Name}=“Company Name”,“Team 1”),
IF({Distributor Name}=“Company Name”, “Team 2”),
IF({Distributor Name}=“Company Name”, “Team 2”))
Does anyone have any suggestions?