Hello! I'm working on creating an order form to automate a custom signage fabrication process. The tricky piece is taking all the "raw data" from the form responses and turning it into something easily legible for our manufacturer. Right now, I'm trying to use the SUBSTITUTE function to combine two text entries into one cell, but I only want the substitution formula to run when a specific type of sign is selected. Is it possible to use SUBSTITUTE and IF in the same formula? And if so, what does the syntax look like?
My current column formula looks like this: =SUBSTITUTE([Arrow Direction]@row, "__", [Cabin Direction Name]@row) + IF([Sign Type]@row = "cabin direction sign", ", " + Sides@row)
You can see in the second screenshot (highlighted in yellow) where the column formula has input an arrow symbol in the "Cabin Direction Copy" column for Row 5. What I want it to do instead, however, is only run the [Arrow Direction] substitution when [Sign Type] = "Cabin direction sign" (whereas in Row 5, [Sign Type] = "Neighborhood sign"). Is this possible?
That said, there could be a much simpler, more efficient way to arrive at the "FINAL Sign Copy" column, so I'm definitely open to other ideas! Thanks so much!