Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How do we color the rows in pivot table with alternate rgb and specific color for Total/Sub Total rows ?
Hi @manojkulkarni ,
Please use below set expression in baground color expression property.
if(mod(RowNo(Total),2)=0,green(),red() )
Hi @manojkulkarni ,
Please use below set expression in baground color expression property.
if(mod(RowNo(Total),2)=0,green(),red() )
Another approach which i think you are looking for is to use dimensionality(). This will let you have conditions on total/sub-total rows.