Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How do I structure a qlikview table?

The database we are extracting from is based on the following structure - duplicate record numbers with fields we wish to extract from multiple rows.

RecordQuestionAnswer
1Age21
1GenderMale
1Service2
2Age44
2GenderFemale
2Service20
3Age38
3GenderMale
3Service5

What would be simplest way to show this data in qlikview in the format below?

RecordAgeGenderService
121Male2
244Female20
338Male5

Any advice would be appreciated.

Thanks,

Paul

1 Solution

Accepted Solutions
sudeepkm
Specialist III
Specialist III

one way is to use Generic load like below. Then create a table box adding all the fields.

Generic

LOAD Record,

     Question,

     Answer

FROM

[https://community.qlik.com/thread/275410]

(html, codepage is 1252, embedded labels, table is @1);

T275410.PNG

View solution in original post

2 Replies
sudeepkm
Specialist III
Specialist III

one way is to use Generic load like below. Then create a table box adding all the fields.

Generic

LOAD Record,

     Question,

     Answer

FROM

[https://community.qlik.com/thread/275410]

(html, codepage is 1252, embedded labels, table is @1);

T275410.PNG

krishnacbe
Partner - Specialist III
Partner - Specialist III

Hope the Attached file will help