Need Column Subtotal and Total to be average of % Amounts not Totals

Options

I need the Subtotal and Totals of % Spent Columns to be averaged not Totaled

fyi - transactionamt = JTD Cost

(IFNULL(CASE WHEN SourceCode = 'Blank' THEN Filter Rows.TransactionAmt end,0))/
CASE WHEN (IFNULL(RevisedEstimatedCost,0)) >= (IFNULL(CASE WHEN SourceCode = 'Blank' THEN Filter Rows.TransactionAmt end,0))

THEN (IFNULL(`RevisedEstimatedCost`,0))
ELSE (IFNULL(CASE WHEN `SourceCode` = 'Blank' THEN `Filter Rows.TransactionAmt` end,0))

END

Best Answers

Answers