I am attempting to assign a new value to a record based on the size of the company. I have a field in Airtable that does the same, the formula is the below:
IF(company_size_on_linkedin = BLANK(),"",
IF(company_size_on_linkedin < 11,"1-10",
IF(company_size_on_linkedin < 51,"11-50",
IF(company_size_on_linkedin < 201,"51-200",
IF(company_size_on_linkedin < 501,"201-500",
IF(company_size_on_linkedin < 1001,"501-1000",
IF(company_size_on_linkedin < 5001,"1001-5000",
IF(company_size_on_linkedin < 10001,"5001-10,000",
IF(company_size_on_linkedin > 10000,"10,000+")))))))))
Is it possible to do this in Zapier with one step?