Adding Bullet Labels in a JOIN Function
Hi!
I have the Below Join function setup to summarize values from multiple cells. I would also like to add an Indicator of what information those values are representing.
=JOIN([Buy Now or Trial]1:[Other Information]1, SUBSTITUTE([New Line]$1, "-", ""))
Is it possible to add each cell as a bullet point?
"• Buy Now or Trial" [Buy Now or Trial]1:[Trial Duration]1
"• Offer Pricing" [Offer Pricing]1
"•Offer Details" [Offer Details]1
"•Promo Start Date" [Promo Start Date]1
"•Promo End Date" [Promo End Date]1
"•Other Information" [Other Information]1
Best Answer
-
In that case you will need something more along the lines of...
="Buy Now/Trial: " + [Buy now or trial]@row + CHAR(10) + UNICHAR(10625) + "Offer Pricing: " + [Offer Pricing]@row + CHAR(10) + UNICHAR(10625) + "Offer Details: " + CHAR(10) + [Offer Details]@row + "Promo Start Date: " + [Promo Start Date]@row + CHAR(10) + UNICHAR(10625) + "Promo End Date: " + [Promo End Date]@row + CHAR(10) + UNICHAR(10625) + "Other Information: " + [Other Information]@row
Answers
-
Try this...
=JOIN([Buy Now or Trial]1:[Other Information]1, CHAR(10) + UNICHAR(10625))
CHAR(10) is the line break and UNICHAR(10625) is a bullet point.
-
-
In that case you will need something more along the lines of...
="Buy Now/Trial: " + [Buy now or trial]@row + CHAR(10) + UNICHAR(10625) + "Offer Pricing: " + [Offer Pricing]@row + CHAR(10) + UNICHAR(10625) + "Offer Details: " + CHAR(10) + [Offer Details]@row + "Promo Start Date: " + [Promo Start Date]@row + CHAR(10) + UNICHAR(10625) + "Promo End Date: " + [Promo End Date]@row + CHAR(10) + UNICHAR(10625) + "Other Information: " + [Other Information]@row
-
@Paul Newcome That worked! Thank you for your help!
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!