How to create a new line(not row) in a table
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
wonka1234
10 - Fireball
‎06-12-2024
07:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hi,
Is there a way to create new line or equivalent of doing a "ENTER" in a cell in a basic table? I do not want a new ROW created. Just a new line.
Before -
City | Team |
Toronto; New York | Raptors; Knicks |
After -
City | Team |
Toronto; New York | Raptors; Knicks |
thanks.
Labels:
- Labels:
- Custom Tools
6 REPLIES 6
16 - Nebula
‎06-12-2024
07:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
In a Formula or Multi-Field Tool. You could use the expression,
replace([_CurrentField_], '; ', ';
')
cjaneczko
13 - Pulsar
‎06-12-2024
07:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can use the following formula.
Replace([City], '; ', '; '+ CharFromInt(10))
Replace([Team], '; ', '; '+ CharFromInt(10))
‎06-12-2024
08:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
thanks! But this doesnt separate lines in basic table view
cjaneczko
13 - Pulsar
‎06-12-2024
08:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
For the Table Layout tool take a look at this thread.
The other solutions will work if you export to Excel.
16 - Nebula
‎06-12-2024
08:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
binuacs
21 - Polaris
‎06-12-2024
11:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@wonka1234 one way of doing this
