Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I have data in a pivot table and i have also loaded target values for each record.
If a value in the pivot is below he target the font color should be Red, otherwise it should be Green.
How can this be done in Sense?
Hi,
try it:-
if(sum(value) >= sum(target), red(), green())
Thanks
Tushar
Hi!
I tried this but it turns all record to Red.
I QV I use this expression, but I can't get it to work in Sense
If ($(v_DS_4G) < If(Len(Only(Country))>0,
num(Only( {$<kpi_item = {'ds_4g'}>}value/1000),'# ##0,00'))
,v_rgb_red, v_rgb_green)
'kpi_item 'and 'ds_4g' are from the loaded target file
Hi, try this
If ($(v_DS_4G) < If(Len(Only(Country))>0, num(Only( {$}value/1000),'# ##0,00')) ,red(),green())
Hi!
Still not working.
I used my QV expression (kpi) in a table and replaced color with '1' or '0' and this seems to work. see below