Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
in attached image I have column a and b
column a expression is =Max({<CSMmilestonename={'Build'}>}SprintNo)
and column b expression is =Min({<CSMmilestonename=-{'Build'}>}CSMsprints1)
in third column i need to get the addition of these two
that is 54+1+6+1, '54' from column a
and '1+6+1' from b.
please help
Now I see it,
a and b are dimensions...
So you'll need a synthetic dimension (valuelist()) or precalculate it in script.
Please prepare a qvw sample.
Hi Robin,
column a and b are expressions.
Thanks
please prepare a sample...
I am sorry, I need Your App.
However try
Sum(Aggr(Sum(Alt(a,0)+Alt(b,0)),[Capability Name]))
Attaching the Qvw sample, here column 1 and column 2 are dimensions, but in original post these are expressions.
It is working for me.
Try putting
Set NullInterpret = '';
in your script
Fayez you should get sum as 62
sum(a)+sum(b) should be 62 for capabilty name
Sum(Total Aggr(Sum(a)+Sum(b),CapabilityName))
Getting '0' values in that column.
Create variable for a and b values
and then try it
Sum(Total Aggr($(vA)+$(vB) ,C_Name))