I'm trying to calculate the organic growth. I know in order to do so, I'll need to determine the following:
Yr Ending Assets: CASE WHEN [REPORTING_CAL_DATE]=#2016-12-30#
OR [REPORTING_CAL_DATE]=#2017-12-29#
OR [REPORTING_CAL_DATE]=#2018-12-31#
OR [REPORTING_CAL_DATE]=#2019-12-31#
OR [REPORTING_CAL_DATE]=#2020-12-31#
OR [REPORTING_CAL_DATE]=#2021-12-31#
OR [REPORTING_CAL_DATE]=#2022-3-31#
THEN [Ending Assets] END
Prior-Year Assets: LOOKUP(SUM([Yr Ending Assets]),-1)
Organic Growth: SUM([Flows])/[Prior-Year Assets]
I'd like the end user to be able to see the organic growth for every subcategory. The data also has every month in between.
Please feel free to suggest a different way to calculate this. Thank you in advance.