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)
- Nothing, we are a turn-key service, from site prep, permits, to completion
- The client has some responsibility like permits, site-prep, and transportation
- We just send the kit of parts and the client takes care of the majority of work
- We offer just the drawings / floor plan in addition or exclusively as a service
And I want to change it to the following based on the above text:
Formatted (Formula)
- turn-key
- door-step
- kit-of-parts
- floorplan-only
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"))