Monthly Graphs - Inventory Turnover
Monthly Graphs - Inventory Turnover
This report displays the trend of orders by month and year.
Report Definition
Author
Jerome Ellos (Full Scale developer)
Presentation Medium
SSRS Portal
Fields (data)
Year
Month
Turnover
Calculations
Column Name | Data Type | Calculation |
---|---|---|
Turnover | decimal |
|
Data Sources
The main data source will be the Tableau_TB_SalesView view in the eiboxoffice database (192.168.10.215).
Data Set
Data Set | Query | Description | |
---|---|---|---|
1 | dsTurnover | select
MonthYear
,Year
,Month
,DateName( month , DateAdd( month , v.Month , -1 ) ) as MonthName
,cast(AVG(Sold) as decimal(9,2)) as [TurnOver]
FROM
(
select
concat(DATENAME(month,InvoiceDate),' ',year(InvoiceDate)) as MonthYear
,year(InvoiceDate) as Year
,month(InvoiceDate) as Month
,SoldQuantity as Sold
from Tableau_TB_Salesview WITH (NOLOCK)
where InvoiceDate >= CONCAT(MONTH(DATEADD(year,-4,GETDATE())),'/1/',YEAR(DATEADD(YEAR,-4,GETDATE()))) AND InvoiceDate <= GETDATE()
AND IsCancelled = 0 AND IsExpired = 0
) v
GROUP BY
MonthYear
,Year
,Month
ORDER BY
Year
,Month | This gets the average sold quantity of tickets for the past 4 years. |
, multiple selections available,
Related content
Monthly Graphs - Inventory
Monthly Graphs - Inventory
More like this
Monthly Graphs - Purchases
Monthly Graphs - Purchases
More like this
Monthly Graphs - Sales and Margins
Monthly Graphs - Sales and Margins
More like this
Monthly Graphs - Market Share
Monthly Graphs - Market Share
More like this
Monthly Graphs - Orders
Monthly Graphs - Orders
More like this
Monthly Graphs - Margin Share
Monthly Graphs - Margin Share
More like this