Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hide all line condition

It's possible hide all line when some column have a especifc value

like: column = 'Prata' hide all line

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

To hide the row, let's for the sake of example, assume that the column to check is column 3:

For each expression (except column 3), change the original expression to:

If(Column(3) = 'Prata', 0, <original column expression here>)

And then make sure that suppress zeroes is enabled for the table. This should work on straight tables and pivot tables.

Regards

Jonathan

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

View solution in original post

5 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     You mean hide all the rows in the table(need to display empty table)?

Celambarasan

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Or do you mean to hide the line if a column contains the value 'Prata'?

Regards

Jonathan

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

hide the line if a column contains the value 'Prata'

jagannalla
Partner - Specialist III
Partner - Specialist III

Hello,

In straight table you can hide the columns.

GoTo -> Properties -> Presentaion -> choose the column which you want to hide -> check on Condition radio button

and paste this code =if(substringcount  (Concat(FieldName),'Prata')=1,False(),True()) in text box.

Hope it helps you.

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

To hide the row, let's for the sake of example, assume that the column to check is column 3:

For each expression (except column 3), change the original expression to:

If(Column(3) = 'Prata', 0, <original column expression here>)

And then make sure that suppress zeroes is enabled for the table. This should work on straight tables and pivot tables.

Regards

Jonathan

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