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

Creating a table view in qlik view

Hi Guys,

I am completely new to Qlik View, my requirement is to create a table (which has two columns in the raw data).

For example raw data looks like below.

 
Column1Column 2
New- India500
old -Europe7000
era - South Africa900

 

and my report should look like below in qlikview:-

 IndiaEuropeSouthafrica
New500  
Old 7000 
era  900

 

Could anyone suggest me how should I proceed. Thanks in advance.

Regards,

Akhil.

Labels (3)
1 Solution

Accepted Solutions
akhil148265
Contributor
Contributor
Author

Let me try and get back to you @sunny_talwar . Thanks for your quick response.

Regards,

Akhil.

View solution in original post

3 Replies
sunny_talwar

Parse out Column1 into two fields using SubField function

Table:
LOAD *,
	 SubField(Column1, '-', 1) as Column1A,
	 SubField(Column1, '-', 2) as Column1B;
LOAD * INLINE [
    Column1, Column2
    New-India, 500
    old-Europe, 7000
    era- South Africa, 900
];

and then use a pivot table to display the information

Capture.PNG

akhil148265
Contributor
Contributor
Author

Let me try and get back to you @sunny_talwar . Thanks for your quick response.

Regards,

Akhil.

Brett_Bleess
Former Employee
Former Employee

Akhil, did Sunny's post help you get what you needed?  If so, do not forget to return to the thread and use the Accept as Solution button on his post to give him credit for the help and let other Community Members know it did work.  If you are still working on things, leave an update on what you still need.

Regards,
Brett

To help users find verified answers, please do not forget to use the "Accept as Solution" button on any post(s) that helped you resolve your problem or question.
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.