Can you use the SUM (aggregator) feature on an expression field in a report?
I have a field that pulls either the budget, planned cost, or actual cost based on the status. I am wanting that column to sum based on groupings but it doesn't appear to show anything. I'm not sure if this can be done since it is an expression.
Here is what I have:
aggregator.displayformat=currencyStringCurrencyRounded
aggregator.function=SUM
aggregator.valueformat=doubleAsDouble
displayname=Forecasted
textmode=true
valueexpression=IF({status}='CPL',{actualCost},IF({status}='RSD',{actualCost},IF({status}='CUR',{plannedCost},IF({status}='APR',{budget}))))
valueformat=currencyStringCurrencyRounded
Each of those fields will sum in their own columns but not in my expression column
Thanks!
Heather