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

Show Diemsion based on Column Results

Hi All,

Does anyone know how to only show the dimesion rows where a columns results are greater than zero, thanks.

Here is some code im using in the "Add Calculated Dimension" box of the Dimensions tab.

 

=IF([ColumnName] > 0, ETMSpecialty)

Thanks

Martin

1 Solution

Accepted Solutions
whiteline
Master II
Master II

Try to use column Expression insted of [ColumnName].

Also rewrite your expression like this:

=aggr(IF((ColumnExpression) > 0, ETMSpecialty), ETMSpecialty)

View solution in original post

4 Replies
whiteline
Master II
Master II

Try to use column Expression insted of [ColumnName].

Also rewrite your expression like this:

=aggr(IF((ColumnExpression) > 0, ETMSpecialty), ETMSpecialty)

thomas_skariah
Creator III
Creator III

Hi Martin,

Another option go for same query and check mark on "Suppress where value is null".

For your reference find the attached application.

Regards,

Tom

Not applicable
Author

I'll Try this thanks

Not applicable
Author

This worked with the suppress where value is null...

thanks my friends