Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Aspiring_Developer
Creator III
Creator III

Rotate table in Qliksense

Hello All ,

I have below data set :-

UserID UserNumber Feedback YN Question
29 11111111 YES Q1) Did you completed the day one activities ?
30 11111111 YES Q2)Did you share the infomration with customer ?
31 11111111 N/A Q3) Did you escalate if required ?
32 11111111 YES Q4Did you follow the closure process ?

 

I wish to achieve the below output :-

UserID User Number Q1) Did you completed the day one activities ? Q2)Did you share the information with customer ? Q3) Did you escalate if required ? Q4) Did you follow the closure process ?
29 11111111 YES      
30 11111111   YES    
31       N/A  
32         Yes

 

I tried this solution but couldn't implement it properly . Solution URL -Solved: Rotate table - Qlik Community - 1683696

Can anyone please help ? @Taoufiq_Zarra 

Thanks

Labels (1)
1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

It looks like you need a simple Pivot Table.

Dimensions: User ID, User Number

Columns: Question

Measure: only(Feedback)

Cheers,

View solution in original post

3 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

It looks like you need a simple Pivot Table.

Dimensions: User ID, User Number

Columns: Question

Measure: only(Feedback)

Cheers,

Aspiring_Developer
Creator III
Creator III
Author

Hi @Oleg_Troyansky 

Thanks for your input . But I have to do it backend . Could you please help me with it ?

 

Thanks again

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hmm, it's a lot more difficult to achieve in the back end. I'll give you a couple of ideas that you'll need to explore on your own:

1. Look into the GENERIC load feature, maybe you can use it to build a script that can rotate your table.

2. In QlikView, there is a table file load Wizard that contains the ability to Rotate the whole table. It might work for you. If it does, then you can copy the generated script, replace the Data connection in it, and use it in Qlik Sense. The same functionality works, but there is no UI that would allow you to generate that script in Qlik Sense.

Cheers,