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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Nive
Partner - Contributor III
Partner - Contributor III

Transpose a table without a Dimension

Hello Guys,

Need a help in converting rows to columns in a straight table without using Dimensions.

Consider i have 3 measure values in Straight table:

High ValueLow ValueTotal Cost
9530150

 

Desired Output:

High Value95
Low Value30
Total Cost150
Labels (1)
5 Replies
Frank_Hartmann
Master II
Master II

what happens if you make a pivot table instead a straight table?

 

1.gif

Nive
Partner - Contributor III
Partner - Contributor III
Author

Im using Qlik Sense, if i convert to pivot , then im forced to use Dimension
Frank_Hartmann
Master II
Master II

ahh, sorry. i thought its qlikview related. my fault 🙂

arulsettu
Master III
Master III

Maybe like this

 

CrossTable (Header,data,1)
load * Inline [
id,High_Value, Low_Value, Total_Cost
1,95, 30, 150
]

 

I am using id as dummy dimension to convert rows into column

Nive
Partner - Contributor III
Partner - Contributor III
Author

Thanks Arulsettu..
The problem is i have more than 6 measure values to be computed in a table which requires complex expressions (using set analysis) and aggregations of different data sets.
can this be solved in UI itself?