Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sijojoseph22
Creator II
Creator II

Data Transformation in Qlik Sense

Hi All,

We are having data in the below format

 

Column1Column2Resource
DevelopmentJavaA
DevelopmentJavaB
DevelopmentOracleC
DevelopmentHTMLD
DevelopmentQSE
DevelopmentQSF
TestingAutomatedZ
TestingManualY
TestingBothW
TestingBothU

 

and need to convert into the below format.

DevelopmentDevelopment ResourceTestingTesting Resource
JavaAAutomatedZ
JavaBManualY
OracleCBothW
HTMLDBothU
QSE  
QSF  

 

 

Please could you advise how to achieve this.

 

Thanks,

Sijo

1 Solution

Accepted Solutions
Vegar
MVP
MVP

To just get the list split into four columns do something like this

 

Load

RowNo()

Column1 as development, 

Column1 as DevResource

From data where Column1 ='Development';

Join

Load

RowNo()

Column1 as Testing, 

Column1 as TestResource

From data where Column1 ='Testing';

 

 

View solution in original post

2 Replies
Vegar
MVP
MVP

Please explain the logic behind finding which development row that is linked to which test row. 

In other words: why is Java A on the same row as Development Z and why do you have no test on the QS development rows?

Vegar
MVP
MVP

To just get the list split into four columns do something like this

 

Load

RowNo()

Column1 as development, 

Column1 as DevResource

From data where Column1 ='Development';

Join

Load

RowNo()

Column1 as Testing, 

Column1 as TestResource

From data where Column1 ='Testing';