I have a measure "Ledger Report View"."Posted Trans Amount" with default aggregate of sum. When place in a column by itself it aggregates as expected.
But, I need to have two columns using this same measure with different criteria, so I can't just put it into the criteria. I need one col to filter by March, 2024, and one col to filter by March, 2025.
Here is my case statement. Once I get it working I will be adding the Month and Fiscal Year into a prompt, so I can't place this in the RPD.
CASE WHEN "Ledger Report View"."Fiscal Month" = 'March'
AND "Ledger Report View"."Fiscal Year" = '2024'
THEN "Ledger Report View"."Posted Trans Amount" END
My issue is that this column will not aggregate. I don't know what I'm doing wrong.