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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
fabio182
Creator II
Creator II

paint values ​​that deviate from the average

Hello everyone,
I have a pivoting table where two dimensions are presented (day and table) and a metric (average amount of data). It is possible to paint those cells that are below 20% of the average and above 20% of the average. Attachment. Thanks for your support

Labels (1)
1 Solution

Accepted Solutions
petter
Partner - Champion III
Partner - Champion III

Maybe this:

If( Avg(ExtractRowCnt) / Avg(TOTAL <NOMBRE_TABLA> ExtractRowCnt) >= 1.2 OR Avg(ExtractRowCnt) / Avg(TOTAL <NOMBRE_TABLA> ExtractRowCnt) <=0.2, Green(50) )

2018-01-20 00_55_28-QlikView x64 - [C__Users_Petter_Downloads_Monitoreo Tablas SQL_Server.qvw_].png

View solution in original post

2 Replies
petter
Partner - Champion III
Partner - Champion III

Maybe this:

If( Avg(ExtractRowCnt) / Avg(TOTAL <NOMBRE_TABLA> ExtractRowCnt) >= 1.2 OR Avg(ExtractRowCnt) / Avg(TOTAL <NOMBRE_TABLA> ExtractRowCnt) <=0.2, Green(50) )

2018-01-20 00_55_28-QlikView x64 - [C__Users_Petter_Downloads_Monitoreo Tablas SQL_Server.qvw_].png

fabio182
Creator II
Creator II
Author

Thank you so much Petter.