Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I need to create three columns as shown below,
Can anyone help me on framing a expression for the third column i.e 'Needed Value' (Highlighted in Yellow)
The calculation logic is explained in the section which is highlighted in red.
Thanks
Koushik
Try this:
=Sum(TOTAL <StudName> Aggr(RangeSum(if(Sum(Theory) < 80 , Sum(Theory)*0.5, Sum(Theory)*0.4),
if(Sum(Practical) < 80 , Sum(Practical)*0.5, Sum(Practical)*0.4)), StudName, Subject))
May be this:
RangeSum(Sum(Theory), Sum(Practical))/RangeSum(Sum(TOTAL <Name>Theory), Sum(TOTAL <Name>Practical))
Can you post an example app so we can see the actual dimension names, field names and expressions you are using.
Or may be even this:
Sum(Theory + Practical)/Sum(TOTAL <Name>Theory + Practical)
Thanks for the reply Sunny. Please find the attached QVW.
My actual QVW has additional calculations to be performed.
Can you help me in fixing the expression in QVW.
Please let me know if more information is required.
Try this:
=Sum(TOTAL <StudName> Aggr(RangeSum(if(Sum(Theory) < 80 , Sum(Theory)*0.5, Sum(Theory)*0.4),
if(Sum(Practical) < 80 , Sum(Practical)*0.5, Sum(Practical)*0.4)), StudName, Subject))
Thanks Sunny.
Regards
Koushik