Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm new to this forum so apologies in advance if I've posted this question in the wrong place.
I'm trying to create a formula where I add up the vAggMeasure only if CC_Quartile is equal to either 1,2,3 or 4. This is the formula I have so far:
Sum(TOTAL <[ProjectName]> aggr({<CC_Quartile='={1,2,3,4}'>} $(vAggMeasure), [ProjectName], [FundName]))
However, the total which is computed using this formula includes instances where 'CC_Quartile' is a blank ('-' in QS).
Does anyone know how I can fix this?
hi,
Sum(TOTAL <[ProjectName]> aggr({<CC_Quartile='={1,2,3,4}'>} $(vAggMeasure), [ProjectName], [FundName]))
try this
(Sum({$<CC_Quartile = {'1','2','3','4'}>} Total AggMeasure))
ksrinivasan.
Try this:
Sum(TOTAL <[ProjectName]> aggr({<CC_Quartile={1,2,3,4}>} $(vAggMeasure), [ProjectName], [FundName]))
hi,
Sum(TOTAL <[ProjectName]> aggr({<CC_Quartile='={1,2,3,4}'>} $(vAggMeasure), [ProjectName], [FundName]))
try this
(Sum({$<CC_Quartile = {'1','2','3','4'}>} Total AggMeasure))
ksrinivasan.
Thanks all.