Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In the chart properties under style>Stripes every 10 rows.
If I change the rows to greater than 10, QV defaults back to 10 for straight tables.
How can I keep the stripes to my number?
Hi Check this,
Expression,back Ground Color,
=if(mod(RowNo(total),10)=0,lightgreen(),lightblue())
HTH,
PFA,
Hirish
nice..hirish
Hi,
That looks great but its in a pivot table not a chart.
Hi
check this,
Same Expression but ,Change type of chart.
PFA,
HTH,
Hirish
Hi, I was after stripping every other 16 rows, so blocks of alternating stripes, the first 16 begin white then the next 16 grey, then the next 16 white etc.
Thanks
Try background color expression, like :
=Color(Floor(RowNo()/16)+1)
Hi Tresesco,
It works,If we want only two colors means !
-Hirish
Then, something like:
Color(Mod(Floor(RowNo()/16),2)+1)