I was trying to make a report via views in Drupal 7. It's quite easy to generate a table with the headers being the labels of the fields, like the following (being very straightforward):
:---------:----------:----------:----------:
| Label A | Label B | Label C | Label D |
:---------:----------:----------:----------:
| Value A | Value B | Value C | Value D |
:---------:----------:----------:----------:
|Value A' |Value B' |Value C' |Value D' |
:---------:----------:----------:----------:
However, I am getting stumped at creating the following complex table:
:---------:----------:----------:----------:
| Header A | Header B |
:---------:----------:----------:----------:
| Label A | Label B | Label C | Label D |
:---------:----------:----------:----------:
| Value A | Value B | Value C | Value D |
:---------:----------:----------:----------:
|Value A' |Value B' |Value C' |Value D' |
:---------:----------:----------:----------:
Any ideas on how to approach this? Thanks :)