我正在为我们的执行团队创建一份销售报告,最优先的请求似乎是将特定月份的销售额与去年同期的销售额进行比较。
我有一个用于数据的链接数据源 (SQL 服务器)。我知道如何创建月与月之间的比较,但我不知道如何创建月与月/年与月/上一年之间的比较。
我用谷歌搜索过这个,但我只能找到月环比或年同比的比较。
我的源数据如下:
ReportDate | SalesYear | SalesMonth | CustomerMasterGroupNumber | CustomerMasterGroupName | ItemMasterGroupNumber | ItemMasterGroupName | ItemGroupNumber | ItemGroupName | ItemNumber | ItemDescription | TotalShipped | TotalSales
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2014-01-01 2014 1 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 110 1814.84
2014-04-01 2014 4 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 167 2755.18
2014-07-01 2014 7 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 127 2095.34
2015-01-01 2015 1 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 101 1801.84
2015-04-01 2015 4 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 196 3496.46
2015-07-01 2015 7 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 158 2818.72
2016-01-01 2016 1 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 130 2319.2
2016-04-01 2016 4 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 142 2533.36
2016-07-01 2016 7 8001 CustomerGroupA 1002 ItemMasterGroup 1 0007 ItemGroup 1 140216 Widgets 148 2640.32
我非常感谢能得到的任何帮助。