Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Straight table rows to colums without using cross table

Hi all,

I have a straight table like the following one:

FirstAdditionalReplacement
8,0%14,8%77,2%

I would like to obtain:

Header
Data
First8,0%
Additional14,8%
Replacement77,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.

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

There is an option in presentation tab "Horizontal" check box, try to select it and let me know

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

There is an option in presentation tab "Horizontal" check box, try to select it and let me know

vcanale
Partner - Creator II
Partner - Creator II

Hi,
try:

LOAD First,

     8,0%

FROM

[..\..\source]

Transpose()

;

Not applicable
Author

Thanks Alessandro, this option solves my problem!