I have a table with some values, but one of the columns always has the same value and i would like to add its value as a new header row to that table.
This is how it looks now:
| Clientid | type | registered |
| 1 | a | yes |
| 2 | b | yes |
And this is what i want it to look like(preferably with a single cell as header:
| Registered: yes | |
| Clientid | type |
| 1 | a |
| 2 | b |
Thanks for having a look!