Welcome to the Airtable Community! If you're new here, check out our Getting Started area to get the most out of your community experience.
Dec 09, 2019 08:38 PM
I’m trying to write a formula that would format a long text to a short formatted text. Example: “We offer just the drawings and floor plan in addition or exclusively as a service” to “floorplan-only”
The tricky part is there are 4 different types:
Service Type (Single line text)
And I want to change it to the following based on the above text:
Formatted (Formula)
What I want is the formula to pull any of the four fields and format it. For example, if the service type was all four, the formatted cell would have: turn-key; door-step; kit-of-parts, floorplan-only. I’m not sure how to add that type of logic and how to add “;” in-between the types.
I tried this formula but it didn’t work as it only picks “AND” logic.
IF({Service Type} = "The client has some responsibility like permits, site-prep, and transportation", "doorstep", IF({Service Type} = "We just send the kit of parts and the client takes care of the majority of work", "kit-of-parts"))