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!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!