按月和按月显示SSRS报告

时间:2018-06-26 05:15:57

标签: asp.net sql-server-2008 visual-studio-2010

我们在下面提到的表中有数据。

1)Annexure Table
  Columns:
    1)Annexure_Id   
    2)Annexure_No
    3)Send_To   
    4)Annexure_Date 
    5)CreationDate  
    6)Userid    
    7)Status    
    8)EstablishmentId   
    9)Type  
    10)TotalAmount  
    11)GrossAmount  
    12)FinancialYear

2)Annexure Item Table
  Columns:
    1)Annexure_Item_Id  
    2)Annexure_Id   
    3)Item_Id   
    4)Item_Code 
    5)Particulars   
    6)Quantity  
    7)Rate  
    8)Amount    
    9)Status    
    10)CreationDate

3)Item Table
  Columns:
    1)Id    
    2)ItemId    
    3)ItemCode  
    4)ItemWidth 
    5)Description   
    6)ItemGroupId   
    7)CreatedUserId 
    8)CreatedDate   
    9)Code  
    10)Stocktype    
    11)EstablishmentId

4)ItemGroup Table
  Columns:
    1)ItemGroupId   
    2)ItemGroupCode 
    3)ItemGroupName 
    4)Status    
    5)CreatedUserId 
    6)CreatedDate   
    7)ItemGroupCategory 

注意:1)附件项目表引用附件表列“ Annexure_Id”。带有附件表“ Annexure_Id”列和附件项表“ Annexure_Id”列的映射。      2)附件项目表引用了项目表列“ ItemCode”。与附件项目表“ Item_Code”和项目表“ ItemCode”对应。      3)项目表具有对项目组表列“项目组ID”的引用。与项目表“ ItemGroupId”列和项目组表“ ItemGroupId”列进行映射。

 Report data:
 1)Item Category : In ItemGroup table "ItemGroupCategory" column data need to display.
 2)Item Group : In ItemGroup table "ItemGroupName" column data need to display.
 3)Product Code :In Annexure item table "Item_Code" column data need to display.
 4)Particulars :In annexure item table "Particulars" column data need to display.
 5)Total Sales Qty :Sum of Quantity of item from Annexure item table  "Quantity" column data.
 6)Sales Value : Quantity * Rate from annexure item table.

 note:1)display details group by itemcode.
      2)If Annexure table status is "Approve Ca" no need to consider that annexure items details.

enter image description here在此处输入图片描述 在图像中,我放置了所需的输出report.image我放置了仅4个月,但我需要直到12月。 图2中有样本表数据。

请给我任何建议。

0 个答案:

没有答案