Hello, Good Day…
We have a requirement to calculate Year to Year calculation for the below data set
CQ - Current Year Qtr
PYCQ - Previous Year Qtr
QTR_Code Rev $ ID
CQ 150 P101
CQ 50 P102
CQ 0 P103
PYCQ 20 P104
PYCQ 70 P104
PYCQ 10 P103
Y2Y Rev = (Current Year Qtr of sum(Rev$) - Previous Year Qtr of Sum(Rev$) for PYCQ) / Previous Year of Sum(Rev$) for PYCQ * 100
= (200 - 100)/100 * 100
Y2Y ID = (Current Year Qtr of count(ID) - Previous Year Qtr of count distinct (ID)) / Previous Year of count distinct (ID) * 100
= (3 -2)/2 * 100
Could we know, how to calculate Y2Y using Dundas Cube or in Metric Set?