Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a straight table like the following one:
First | Additional | Replacement |
---|---|---|
8,0% | 14,8% | 77,2% |
I would like to obtain:
Header | Data |
---|---|
First | 8,0% |
Additional | 14,8% |
Replacement | 77,2% |
Is there a way to do this with a straight table without using a cross table and dragging rows to columns?
Thanks in advance.
There is an option in presentation tab "Horizontal" check box, try to select it and let me know
There is an option in presentation tab "Horizontal" check box, try to select it and let me know
Hi,
try:
LOAD First,
8,0%
FROM
[..\..\source]
Transpose()
;
Thanks Alessandro, this option solves my problem!