Consolidate entries from multiple columns and add a hard return (or extra line) between entries
I would like to use a helper column to add a space and division between entries in multiple columns in the same row - i.e
Row is a deliverable
Column A, B and C are the status from 3 teams that have a status on that deliverable
consolidate the status in Column A, B and C into a single column/cell AND divide out the status for ease of reading
Overall Status (column header)
Status A
-------------------------
example of status A
Status B
-------------------------------
Example of Status B
Status C
---------------------------------
Example of status C
Helper column/cell would have the dotted line and a hard return after the dotted line
Answers
-
Hi @NicoleB,
The function CHAR(10) will give you a carriage return/line break.
You will need to Wrap text the Overall Column to see the effect of it.
The JOIN() function will concatenate a range of column values, for example if you have:
=JOIN([Team A]@row:[Team C]@row, CHAR(10) + "----------" + CHAR(10))
will give you 'Overall Status' result for Deliverable 1 of:
Not Started
----------
Not Started
----------
In Progress
Or else, (without a bunch of additional helper columns for each of the Team names), you could do something more convoluted like this (for Deliverable 2):
="Team A – " + [Team A]@row + CHAR(10) + "-----" + CHAR(10) + "Team B – " + [Team B]@row + CHAR(10) + "-----" + CHAR(10) + "Team C – " + [Team C]@row + CHAR(10) + "-----"
to give you:
Team A – Completed
-----
Team B – In Progress
-----
Team C – Completed
-----
Adrian Mandile
CHESS Consulting Australia - Smartsheet Solution Provider Gold Partner
Collaborative | Holistic | Effective | Systems | Solutions -
Adrian Mandile
CHESS Consulting Australia - Smartsheet Solution Provider Gold Partner
Collaborative | Holistic | Effective | Systems | Solutions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!