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.
In a Formula or Multi-Field Tool. You could use the expression,
replace([_CurrentField_], '; ', ';
')
You can use the following formula.
Replace([City], '; ', '; '+ CharFromInt(10))
Replace([Team], '; ', '; '+ CharFromInt(10))
thanks! But this doesnt separate lines in basic table view
For the Table Layout tool take a look at this thread.
The other solutions will work if you export to Excel.
@wonka1234 one way of doing this
User | Count |
---|---|
19 | |
15 | |
15 | |
9 | |
8 |