Dear Team!
I am struggling with calculating percentages in the 'Total' column. I have done with 'dbr.hsum' to calculate the sum, but I am having trouble with percentages. :(
this is my code:
select 'dbr.summary.text', 'Total';
select 'dbr.hsum', 'ty';
--select 'dbr.havg', '%Actual';
select 'dbr.hsum', 'Plan';
--select 'dbr.havg', '%Plan';
--select 'dbr.havg', '%';
select 'dbr.hsum', 'MoM';
--select 'dbr.havg', '%MoM';
select 'dbr.hsum', 'ly';
--select 'dbr.havg', '%YoY';
--select 'dbr.summary.calc', '%', 'ty/Plan*100';
--select 'dbr.summary.calc', '%MoM', '(ty/MoM-1) * 100';
--select 'dbr.summary.calc', '%YoY', '(ty/ly-1) * 100';
Thanks Team!