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

Can i use the first column values as column headers?

Hi all,

My raw excel data format is as per below

Eval No.Evaluation 1Evaluation 2Evaluation 3Evaluation 4
Evaluator Name:WXYZ
Staff Name:ABCD
Score708090100

What i want is the first column values to become the column headers, and the remaining column data to become the row data

 

Eval No.Evaluator Name:Staff Name:Score
Evaluation 1WA70
Evaluation 2XB80
Evaluation 3YC90
Evaluation 4ZD100

I would like to know how i can do this without tampering with the raw excel data format. Thank you.

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Leow,

Capture.PNG

You can use Transformation wizard to achieve the above result.

LOAD [Eval No.],

     [Evaluator Name:],

     [Staff Name:],

     Score

FROM

Book11.xlsx

(ooxml, embedded labels, table is Sheet1, filters(

Transpose()

));

View solution in original post

4 Replies
tamilarasu
Champion
Champion

Hi Leow,

Capture.PNG

You can use Transformation wizard to achieve the above result.

LOAD [Eval No.],

     [Evaluator Name:],

     [Staff Name:],

     Score

FROM

Book11.xlsx

(ooxml, embedded labels, table is Sheet1, filters(

Transpose()

));

MarcoWedel

Hi,

the Import wizard can help you with this kind of transformations.

Just use the transpose option you can find there.

Regards

Marco

Anonymous
Not applicable
Author

while load the data from excel file use transformation step...

Gysbert_Wassenaar

You can also try a CrossTable load:

CrossTable(EvaluationNumber, Value)

LOAD * FROM MyExcelFile.xlsx (ooxml, embedded labels, table is Sheet1);


talk is cheap, supply exceeds demand