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

conditional rows in table

Hi,

I have a lot of data from our laboratory, and we have a field TAT (turn around time).

I need to make a table where only the rows of the table are shown where the TAT is bigger than 90% of all TAT's.

The condition is something like this: TAT > fractile(TAT,0.90)

But I don't know where or how to put it in my table.

Any help?

Thx!

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

In situations like this I often create a calcualted dimension. Use your condition in the dimension calculation.

View solution in original post

2 Replies
deepakk
Partner - Specialist III
Partner - Specialist III

hi,

First you need to create pivot table. Add the required dimesnion and in Expression try the below code.

sum(if(TAT > fractile(TAT,0.9), TAT)).

Anonymous
Not applicable
Author

In situations like this I often create a calcualted dimension. Use your condition in the dimension calculation.