anthonyexcel
Active Member
- Joined
- Jun 10, 2011
- Messages
- 256
- Office Version
- 365
- Platform
- Windows
I have 3 sets of data that I need to line up. The columns are all sorted in alphabetical order . Please see below:
<style type="text/css">
table.tableizer-table {
border: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #ccc;
}
.tableizer-table th {
background-color: #104E8B;
color: #FFF;
font-weight: bold;
}
</style>
<tbody>
</tbody>
I need this:
<style type="text/css">
table.tableizer-table {
border: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #ccc;
}
.tableizer-table th {
background-color: #104E8B;
color: #FFF;
font-weight: bold;
}
</style>
<tbody>
</tbody>
Thanks in advance!
<style type="text/css">
table.tableizer-table {
border: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #ccc;
}
.tableizer-table th {
background-color: #104E8B;
color: #FFF;
font-weight: bold;
}
</style>
Business Group A | Sales | Business Group B | Sales | Business Group C | Sales | ||
---|---|---|---|---|---|---|---|
A | 23 | B | 86 | D | 67 | ||
D | 5 | C | 65 | L | 8 | ||
G | 4 | D | 453 | M | 4 | ||
H | 65 | I | 34 | W | 2 | ||
K | 76 | L | 23 | X | 7 | ||
L | 87 | M | 23 | Z | 1 |
<tbody>
</tbody>
I need this:
<style type="text/css">
table.tableizer-table {
border: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #ccc;
}
.tableizer-table th {
background-color: #104E8B;
color: #FFF;
font-weight: bold;
}
</style>
Business Group A | Sales | Business Group B | Sales | Business Group C | Sales | ||
---|---|---|---|---|---|---|---|
A | 23 | ||||||
B | 86 | ||||||
C | 65 | ||||||
D | 5 | D | 453 | D | 67 | ||
G | 4 | ||||||
H | 65 | ||||||
I | 34 | ||||||
K | 76 | ||||||
L | 87 | L | 23 | L | 8 | ||
M | 23 | M | 4 | ||||
W | 2 | ||||||
X | 7 | ||||||
Z | 1 |
<tbody>
</tbody>
Thanks in advance!