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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
kishorj1982
Creator II
Creator II

Need to show row when X present others rows need to hide in straight table

Hi All,

PFA.

When 'X' present in any row I need to show whole that row other rows no need to show.Please suggest

Thanks

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Assuming X is in column 1, then use a condition on each expression like

    If(Column(1) = 'X', <original expression for column2>)

    If(Column(1) = 'X', <original expression for column3>)

    ...


Then ensure that suppress zeros and nulls is enabled

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Assuming X is in column 1, then use a condition on each expression like

    If(Column(1) = 'X', <original expression for column2>)

    If(Column(1) = 'X', <original expression for column3>)

    ...


Then ensure that suppress zeros and nulls is enabled

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
kishorj1982
Creator II
Creator II
Author

Thanks Jonathan.

Its working