Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a KPI and my calculatıon:
(SUM(if(Date<=Today(),DBALANCEUSD))-1686000) / SUM(if(YEAR(Date) > 2020,DBALANCEUSD))
If I select 2023 as the year, I get the following image
I want to get the trend analysis of this calculation on a monthly basis.But it brings me wrong data. Could you help?
Month Dimension: Month(Date)
Year Dimension:Year(Date)
OVERDUE RATIO Measure:(SUM(if(Date<=Today(),DBALANCEUSD))-1686000) / SUM(if(YEAR(Date) > 2020,DBALANCEUSD))
Thank you.
Hi
May be try to aggr your mesure by month and year ?
aggr(
(SUM(if(Date<=Today(),DBALANCEUSD))-1686000) / SUM(if(YEAR(Date) > 2020,DBALANCEUSD))
, MONTH, YEAR )