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: 
PrajS
Contributor III
Contributor III

Transpose Table with most string/ dimensions from row to column

Hi Experts ,

 

How can I transpose my Data  table that has mostly dimensions from row to a column 

 

Current result 

Customer IDCustomer NamePhNoEmail AddressLocation 
1ABC123dfgqwe

 

Desired Result

Customer ID1
Customer NameABC
PhNo123,567
Email Addressdfg
Location qwe

 

Need Help here. I hav tried Pivot, That is not helping me much here. Am also using concatenation of rows like concat(Phone,',')

 

Any help is appreciated

 

Thank you 

Labels (1)
2 Solutions

Accepted Solutions
arulsettu
Master III
Master III

Maybe like this

 

CrossTable(rows,values)
load * Inline [
Customer_ID, Customer_Name, PhNo, Email_Address, Location
1, ABC, 123, dfg, qwe

];

 

arulsettu_0-1595940368185.png

 

View solution in original post

PrajS
Contributor III
Contributor III
Author

Yes that was the solution Thank you 

 

View solution in original post

2 Replies
arulsettu
Master III
Master III

Maybe like this

 

CrossTable(rows,values)
load * Inline [
Customer_ID, Customer_Name, PhNo, Email_Address, Location
1, ABC, 123, dfg, qwe

];

 

arulsettu_0-1595940368185.png

 

PrajS
Contributor III
Contributor III
Author

Yes that was the solution Thank you