Microsoft Excel Reporting Tool
 

Excel Report Template - Monthly Sales 4

See Microsoft ® Excel ® Report

Excel Report Template - Monthly Sales 4

Function and SQL

@F3=REPORT(sheet="Report3" type=var cell=A7 reserve=2)
SELECT c.CountryName
	,SUM(d.Quantity)
	,Sum(d.UnitPrice * d.Quantity * (1-d.Discount))
FROM Orders o
	,OrderDetails d
	,Countries c
WHERE o.OrderID = d.OrderID
AND o.ShipCountryCode = c.CountryCode
AND YEAR(o.OrderDate) = YEAR('$ReportMonth-01')
AND MONTH(o.OrderDate) = MONTH('$ReportMonth-01')
GROUP BY c.CountryName
ORDER BY c.CountryName
;

These sample reports are generated by XLReportGen (Report Generator for Microsoft Excel). The sample reports in Microsoft Excel spreadsheet format can be download for your report templates, and changed to adapt to your own needs. It is free.

Download the report samples in Microsoft Excel spreadsheet format  XLS (293KB)

 


Copyright © 2004 - 2006 LJZsoft Corporation. All rights reserved.