Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi !
I have table with expression (FACT 2012):
sum(if((Aggr(sum({<year={"2012"}, bg_t={'*'}, bg_t-={'b\g}, Holding=>} Quantity),AffiliateID, Holding,mes))>0 ,1,0))
How can i get field with total sum?
please help if you know
Try adding total <Dim1,Dim2> to the sum expression. Replace Dim1 and Dim2 with the first two dimensions of your pivot table.
sum(total <Dim1,Dim2> if((Aggr(sum({<year={"2012"}, bg_t={'*'}, bg_t-={'b\g}, Holding=>} Quantity),AffiliateID, Holding,mes))>0 ,1,0))
See attached example for how it works.
Try adding total <Dim1,Dim2> to the sum expression. Replace Dim1 and Dim2 with the first two dimensions of your pivot table.
sum(total <Dim1,Dim2> if((Aggr(sum({<year={"2012"}, bg_t={'*'}, bg_t-={'b\g}, Holding=>} Quantity),AffiliateID, Holding,mes))>0 ,1,0))
See attached example for how it works.
Thank you, Gysbert for your help!
I put exemple in you attachment, please look
Hi,
Try this expression
sum(Total<Year, Product, Region>if((Aggr(sum({<year={"2008"}, Product={'*'}, product-={'Banana'}, Holding=>} Sales),Year, Product,Month))>0 ,1
,0))
Regards,
jagan.
thank you very much!
thank you, it works
I'm wondering whether this approach can work for total <vMyVariable>?
It works fine: if within <> I write MyField , the formula then looks the following way: sum(VALUE) / sum(total <MyField> VALUE)
PROBLEM: what if MyField variates due to the drill down, so that it can be MyField1,MyField2,MyField3?
It does not work: if within <> I write vMyVariable containing the needed field, the formula then looks the following way: sum(VALUE) / sum(total <vMyVariable> VALUE)
Any ideas/suggestions are very much appreciated.