decadence
Well-known Member
- Joined
- Oct 9, 2015
- Messages
- 525
- Office Version
- 365
- 2016
- 2013
- 2010
- 2007
- Platform
- Windows
Hi, Is it possible to combine columns into one comma delimited column while keeping the formats from the cells in the columns that are to be combined then delete the columns used to combine with
Example:
From This:
[TABLE="class: grid, width: 250"]
<tbody>[TR]
[TD]This[/TD]
[TD]is [/TD]
[TD]not [/TD]
[TD]a[/TD]
[TD]Test[/TD]
[/TR]
[TR]
[TD]This[/TD]
[TD]is [/TD]
[TD]a[/TD]
[TD]Test[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Number[/TD]
[TD]100.123[/TD]
[TD]90[/TD]
[TD]is[/TD]
[TD]here[/TD]
[/TR]
[TR]
[TD]Something[/TD]
[TD]else[/TD]
[TD]or[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Nothing[/TD]
[TD]has[/TD]
[TD]been [/TD]
[TD]found[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
To This:
[TABLE="class: grid, width: 250"]
<tbody>[TR]
[TD]This,is,not,a,Test[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]This,is,a,Test[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Number,100.123,90,is,here[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Something,else,or[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Nothing,has,been,found[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Example:
From This:
[TABLE="class: grid, width: 250"]
<tbody>[TR]
[TD]This[/TD]
[TD]is [/TD]
[TD]not [/TD]
[TD]a[/TD]
[TD]Test[/TD]
[/TR]
[TR]
[TD]This[/TD]
[TD]is [/TD]
[TD]a[/TD]
[TD]Test[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Number[/TD]
[TD]100.123[/TD]
[TD]90[/TD]
[TD]is[/TD]
[TD]here[/TD]
[/TR]
[TR]
[TD]Something[/TD]
[TD]else[/TD]
[TD]or[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Nothing[/TD]
[TD]has[/TD]
[TD]been [/TD]
[TD]found[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
To This:
[TABLE="class: grid, width: 250"]
<tbody>[TR]
[TD]This,is,not,a,Test[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]This,is,a,Test[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Number,100.123,90,is,here[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Something,else,or[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Nothing,has,been,found[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Last edited: