Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

hide or remove text

Hi,

Does anybody know how hide or remove text from table?

Other words, I have 3 string variables;

Var1  Var 2  Var 3

A        ab      abc

B        bc      cde

C        cd      qwe

D        de      asd.

I need to show only

Var1  Var 2  Var 3

A        ab      abc

B        bc      cde

D        de      asd.

Any thoughts?

Thanks,

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

mmm, in a straight table or table box??

mmm try this

Dimenssions= Var1 , Var2

Expressions = if(Var1<>'C',Var3)

and activate Supress Zero Values for the expression

View solution in original post

5 Replies
Anonymous
Not applicable
Author

mmm, in a straight table or table box??

mmm try this

Dimenssions= Var1 , Var2

Expressions = if(Var1<>'C',Var3)

and activate Supress Zero Values for the expression

Anonymous
Not applicable
Author

Alternative, use dimension:
=aggr(if(Var1<>'C', Var1),Var1)
Use label Var1, and check "suppress if value is null

Anonymous
Not applicable
Author

Hi guys,

I tryed to use your ideas, but they didn't work

I need to show like a table, where I can hide some varaibles.

My key variable is Var 2. But Order should be Var 1, Var 2 and Var 3.

Thanks,

Not applicable
Author

var2 is a dimension or an expression?

you want to hide everything that starts with 'c'?

Anonymous
Not applicable
Author

Hi Federico,

I found out issue.

Dimenssions= Var1 , Var2

Expressions if(Var1<>'C' and Var1<>'A' , Var3)

Thanks,