Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to display Comment as Text Data Only ?

Hi All,

I have this set of data in my Qlikview:

Qns 2.jpg

I only want to display Q3_Comment, Q4_Comment Group by EOR_Subject, EOR_Questions.

Result that I desired:

Qns 3.jpg

Questions:

1)  What charts should i use for text only data ?  I tried Straight table and pivot table but to no valid.

2)  How to show only specific questions only group by Subject and sorted by questions.  It seems that Pivot table should do the job but I am stuck at the expression part as there is no measure to be used as Data is text only.

3) How to omit the Q3_Comment, Q4_Comment that has NA, -, N/A, empty all at once ?

Thanks in advance.

1 Solution

Accepted Solutions
amars
Specialist
Specialist

Use an expression like the below:

IF(WildMatch(EOR_Questions,'Q3_Comment','Q4_Comment')>0,'')

in your pivot. Keep the header of ur Expression as a single space value and it will do the thing.

Thanks

View solution in original post

3 Replies
amars
Specialist
Specialist

Use an expression like the below:

IF(WildMatch(EOR_Questions,'Q3_Comment','Q4_Comment')>0,'')

in your pivot. Keep the header of ur Expression as a single space value and it will do the thing.

Thanks

Gysbert_Wassenaar

By far the easiest way is to add a listbox for the  EOR_Questions field and then select in that listbox only those values you want to see the results for.

If you only want to show text values you can try an expression like: if(isnum(Data),null(),Data)

If you want to omit some values too you can try: if(isnum(Data) or match(Data, 'NA','N/A','-'),null(),Data)


talk is cheap, supply exceeds demand
Not applicable
Author

Hi All,


Thanks for your help, manage to get this done with WildMatch expression.  Below is the answer to it.


=If(WildMatch(EOR_Questions,'*27*','*28*','*29*')>0 ,EOR_Questions)

Warmest Rdgs,

Chun Wey