"Digital Signage (BOH) - TVs installed to reach branch salespeople in lunch rooms, warehouses and other strategic locations. ", Email to Salespeople - Email to increase brand or product awareness with salespeople usually offering a stocking incentive. , Flyer for Salespeople - Flyer used for vendor to increase awareness about products or stocking offers available to salespeople., Post on Intranet - Announcement posted on the intranet website to increase awareness about products or stocking offers.
to something like this:
Digital Signage (BOH) - TVs installed to reach branch salespeople in lunch rooms, warehouses and other strategic locations.
Email to Salespeople - Email to increase brand or product awareness with salespeople usually offering a stocking incentive.
Flyer for Salespeople - Flyer used for vendor to increase awareness about products or stocking offers available to salespeople.
Post on Intranet - Announcement posted on the intranet website to increase awareness about products or stocking offers.
I can handle hard returns, I prefer if I can use bullets or hyphens or something to designate the list elements.
You can define a custom separator by replacing the dot symbols in the formula. If you want a hard break between each item, then you can insert an additional new line operator like this:
You can define a custom separator by replacing the dot symbols in the formula. If you want a hard break between each item, then you can insert an additional new line operator like this:
You can define a custom separator by replacing the dot symbols in the formula. If you want a hard break between each item, then you can insert an additional new line operator like this:
Wait .... I think it may the "rollup" .... I simply added a formula field for this. If I add a rollup field though, I can't input a formula. So perhaps this is a very silly question. How do I do that?
Your sample accomplishes EXACTLY what I'm trying to do!! Thank you.
My implementation is incorrect. This is what it looks like:
This is how I plugged in your formula:
IF(
{Marketing Tactic - Detail},
IF(
COUNTALL({Marketing Tactic - Detail}) = 1,
"• " & TRIM("" & {Marketing Tactic - Detail}),
IF(
COUNTALL({Marketing Tactic - Detail}) > 1,
"• " &
TRIM(
ARRAYJOIN(
{Marketing Tactic - Detail},"\n• "
)
)
)
)
)
What did I mess up?
Instead of a formula field, you need to create a rollup field. If you use the rollup field, you can just copy and paste the exact formula I posted; you won't have to change it at all.
I think I understand. You're able to use "rollup" because those multi-selects are records in another table that you're linking. Thus, rollup.
The way I currently have the data set up in this table is that it's just a multiple select field. This is a huge table .... I can change it if that's my only option, but I really prefer not. Is there a way to accomplish this without the rollup/linked record requirement or not really?
I think I understand. You're able to use "rollup" because those multi-selects are records in another table that you're linking. Thus, rollup.
The way I currently have the data set up in this table is that it's just a multiple select field. This is a huge table .... I can change it if that's my only option, but I really prefer not. Is there a way to accomplish this without the rollup/linked record requirement or not really?
Ouch. That's rough. If I had to nominate a field to indiscriminately eject from databases and data structures, it would be multiple select fields. In 99% of use cases that have a multiple select field implemented, the better choice would have actually been a linked record field. Based on the data you were working with, I strongly advise that you change your multiple select field into a linked record field. It's not nearly as hard as it might seem, and it will make your database so much more sustainable and resilient.
You can change the field type into a linked record field and Airtable will automatically convert your preexisting multiple select options into new records in the table that's created. I've included a quick video snippet of how quickly and cleanly it can be done.
If you watch that video and still decide that it's not worth it for you, then let me know and I'll figure a formula for your multiple select-based use case.
I decided to bite the bullet and switch it over while I was waiting lol only took a few minutes, I just didn't want another sheet in the base. It's for the best! Thank you for your help. This is exactly, exactly, exactly what I needed. I wouldn't have figured that formula out!
Glad you got it figured out. I also agree that having a linked record in a different table instead of a multi-select is much nicer.
In case you are interested, I tend to use a slightly different rollup formula. If you know there will be no empty lines, you can omit the ARRAYCOMPACT().
You can define a custom separator by replacing the dot symbols in the formula. If you want a hard break between each item, then you can insert an additional new line operator like this: