Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I have used the below logic to get the alternate colors.But i'm not get the colored null values.
Logic: =if(even(RowNo(TOTAL)),lightgray(),white())
Thanks..
AFAIK NULL couldn't be colored - therefore you need to replace the NULL's with a real value either within the data or maybe by something like: rangesum(YourExpression, 0) as chart-expression.
- Marcus
Try this
=if(even(RowNo(TOTAL)),lightgray(),if(even(RowNo(TOTAL)) and expression=null(),lightgray(),white()))
Hi,
It's not working.
Thanks..
Try this
IF(Even(RowNo(TOTAL)) OR Len(Even(RowNo(TOTAL)) )=0,Lightgray(),white())
Then convert the null values to 0 ,
if(len(Trim(Expression))>0,Expression,0)
NOTE:
Replace the Expression with your actual expression
if you are not able to achieve the same, provide the sample app
Hi,
Still the nulls were not colored.
Thanks..
Would you provide sample to look, Where this is not working. Even i've dump and i tried it covered to Null values