I need to do a % change metric from the same metric but different time period. Currently, I've a attribute - country and Year, a metric - count.
E.g.
Year 2003 2004
Country Metric Count Count
U.S. 100 20
German 140 50
Japan 110 25
Need a metric to do something like below:
Year 2003 2004 %Change
Country Metric Count Count
U.S. 100 20 -25% (Here's how I get the -25%: (20/3) - (100/12) = -1.67 -> (1.67/6.66)*100)
German 140 50 30% ((50/3)-(140/12) = 5 -> (5/16.67)*100)
Japan 110 25 -9.96%
Any comments and suggestion are appreciated. Thanks alot.
E.g.
Year 2003 2004
Country Metric Count Count
U.S. 100 20
German 140 50
Japan 110 25
Need a metric to do something like below:
Year 2003 2004 %Change
Country Metric Count Count
U.S. 100 20 -25% (Here's how I get the -25%: (20/3) - (100/12) = -1.67 -> (1.67/6.66)*100)
German 140 50 30% ((50/3)-(140/12) = 5 -> (5/16.67)*100)
Japan 110 25 -9.96%
Any comments and suggestion are appreciated. Thanks alot.