Mar 23, 2010 #1 sanvalys Programmer Joined Mar 23, 2010 Messages 1 Location US Hi I am looking for any script or method to populate MTD,YTD,QTD transformation tables. Any help would be appreciated Thank you
Hi I am looking for any script or method to populate MTD,YTD,QTD transformation tables. Any help would be appreciated Thank you
Mar 23, 2010 #2 markros Programmer Joined May 21, 2007 Messages 3,150 Location US Check http://social.msdn.microsoft.com/Fo.../thread/e600a273-e7a7-4802-b997-2717945eaad7/and links referenced there PluralSight Learning Library Upvote 0 Downvote
Check http://social.msdn.microsoft.com/Fo.../thread/e600a273-e7a7-4802-b997-2717945eaad7/and links referenced there PluralSight Learning Library
Mar 24, 2010 #3 NastiaMurzin IS-IT--Management Joined Mar 17, 2010 Messages 46 Location CA select dateadd(year, 1, '2009-03-25'); go select dateadd(month, 3, '2009-03-25'); go select dateadd(month, 1, '2009-03-25'); go Here is an example. Upvote 0 Downvote
select dateadd(year, 1, '2009-03-25'); go select dateadd(month, 3, '2009-03-25'); go select dateadd(month, 1, '2009-03-25'); go Here is an example.