Viewing post 1 (of 1 total)
So far I am successful with this attempt
I have now tried creating the growth rate columns in SQL Query itself
Select d.id,d.Code,d.Year,d.Value,d.Value-q.Value as Diff, (d.Value-q.Value)*100/q.Value as GRRate
from Table d
Left join (Select...
April 16, 2009 at 8:01 am
#978853