
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ColorMix
hi all
i am using ColorMix1 to turn pivot into a heatmap, using below function:
ColorMix1( rank(total column(1))/noofrows(TOTAL) , LightGreen(),LightGray())
the outcome is "heated" dimension (rows) as in the attached picture.
how can i highlight the high/low values within the dimension rows?
any ideas?
advanced thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Olá @ilanbaruch ,
Vou passar uma expressão abaixo que utilizei para cor em Gradiente, ai você vai precisar adaptar sua medida a ela.
Caso ajude, marcar como solução.
Grato!
// Cálculo para trazer a expressão da cor de fundo em Gradiente
ColorMix2(
(
avg([Total-Venda])
-
min(total
Aggr(
avg([Total-Venda])
,Filial))
-
(
Max(total
Aggr(
avg([Total-Venda])
,Filial))
-
min(total
Aggr(
avg([Total-Venda])
,Filial))
)
/
2
)
//retorna a média entre entre o valor max e mínimo
/
//Calculo para retornar Valor Máximo
(
(
Max(total
Aggr(
avg([Total-Venda])
,Filial))
-
//Calculo para retornar Valor mínimo
min(total
Aggr(
avg([Total-Venda])
,Filial))
)
/
2
)
,
Red(),
Green(),
Yellow()
)
