Hi, I have a column with cellvlass define like:
select 'dbr.hdr', 'Brand';
select 'dbr.cellclass', 'Diff', '[Dcolor]';
select 'dbr.footerstyle', 'background-color: #F7F2E0;font-weight: normal;color:#0101DF;';
select Brand, Model, Value - Budget as Diff, IF(Value>=Budget,'text_green','text_red') as '[Dcolor]' from Mobile.Mobile_Sales
order by Brand, Model;
This works for normal row, but my client request to apply Dcolor in the footer rows. But how to calculate the value of 'Dcolor' in footer row while 'dbr.calc' only work for number?
And will the 'dbr.cellclass', 'dbr.cellstyle' work with summary?
Thanks,