How to merge dates in the same year in one column in rdlc report ?

dears 
I need to create like this report but I cannot merge the transactions in the days in one column return to the month as in the table
Delivery Schedule
2010
2011
2012
2013
2014
Model / Month
Total
Total
Total
Total
Jan
Feb
March
April
May
June
July
Aug
Sep
Oct
Nov
Dec
Total
item1
0
item2
11
1
1
2
item3
3
1
1
2
item4
14
1
1
1
1
1
1
1
7
item5
10
2
2
1
1
1
4
10
1
1
1
1
25
item6
0
item7
7
1
1
2
1
1
1
7
item8
19
4
4
5
11
10
4
7
13
2
5
3
68
item9
1
2
1
1
5
item10
15
3
5
5
5
8
5
3
7
5
8
1
3
58
item11
63
15
8
4
12
6
11
8
7
24
11
6
112
item12
3
1
1
1
1
1
2
1
2
10
item13
32
3
7
7
7
8
5
5
10
2
54
item14
16
3
2
5
7
9
8
6
3
2
45
Total Delivery
0
0
0
193
29
29
21
26
51
36
40
40
44
38
25
16
395

Hi Eng ,
Based on my understanding, the date field exists in the database, then you want to display the corresponding year and month within the report and perform sum total,right?
In your scenario, since you haven’t provided the sample data, we create the database with some data. Then design the report with the structure you provided. Please refer to our test steps and results:
1. Create the database with the query below:
create table test1
[item] nvarchar(50),
[date] date,
value int)
insert into test1 values
('item1','2014/02/08',10),
('item2','2014/02/22',56),
('item3','2014/07/18',45),
('item3','2014/07/18',40),
('item4','2015/02/26',36),
('item5','2015/02/12',79)
2. Design the report like below:
3. Preview the report.
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu
Qiuyun Yu
TechNet Community Support

Similar Messages

  • How to populate data in the same table based on different links/buttons

    Hi
    I'm using jdeveloper 11.1.4. I have a use case in which i need to populate data in the same table based on click of different links.
    Can anyone please suggest how can this be achieved.
    Thanks

    I have a use case in which i need to populate data in the same table based on click of different linksDo you mean that you need to edit existing rows ?
    What format do you have the date in - table / form ?

  • How to merge pages within the same document?

    Can I merge pages within the same pdf document? I have two large maps, an east and west, can I put the two pages together to make one map?

    How different are the layouts?
    You can vary the left and right pages:
    +Inspector > Layout > Section > Configuration > Left and right pages are different+
    But the position of the headers, footers and margins will be the same.
    You could make different designs and capture those but each would have to be its own section. This sort of thing works better in Layout mode, where every page is a different section, but you won't get automatic text flow nor TOC, footnotes etc.
    Pages rapidly gets very clumsy when you try to do detail layout to this extent.
    Peter

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • How to merge data to the adobe forms

    Can any one tell me the solution to merge data to the adobe form created using adobe life cycle designer. Here i want to merge data in the server side and send the resulting forms to the users

    Hi,
    You are correct, You can load the Data from ODSA / ODSB to ODSC.
    1. Create the ODSC which are include the fileds A,B,C,D,E.
    2. Create the Transfermation from ODSA to ODSC> Give the Propermapping with A,B,C,D> Save and Activate the Transfermation.
    3. Create the another Transfermation from ODSB to ODSC--> Give the mapppings with A and E only, then save and activate the Transfermation.
    4. Create the two DTPs for indevidual loading data from ODSA>ODSC and ODSB>ODSC.
    You can see the Data from ODSC by selecting Manage.
    Regards.

  • How to retirve data in the same sequence as it is entered by user.

    Dear All,
    Can anybody please help me to resolve the below oaf issue.
    Issue : In one of the column in advanced table is OAMessageTextInputBean. User will enter data as
    1) color
    2) size
    3) name.
    I set the properties of Text inputBean Heigth and length. so when ever user enter more data automatically scrollbar is getting to scroll up and down. So far ok. But,
    When i want to represent this data in view mode, i am using OAMessageStyledText bean. But i data enter abouve is getting in the same line as
    1) color2)size3)name.
    I want to show the data entered by user in textInput same in message Styled Text, basically sequence. So, Could anybody help me how to achieve this requirement?
    Thanks in advance,
    Hasine K.

    hi,
    in advance table create a item rawtext and add HTML tag and use <br> tag for breaking the line.........for more go to OAF Userguide

  • How to display data in the same tab components ?

    Hi,
    I have a tabbed pane and contains 3 tabs. I have entered some value in the text field and clicked the enter button in the 3rd tab.This enter button contains some validation code and after validation it will display some data in the text area in the same tab. In the mean time , i am navigating to another tab eg first tab. But my data is displayed in the second tab instead of 3rd tab.
    can anyone help me to solve this ?
    bye for now
    sat

    But my data is displayed in the second tab instead of 3rd tab.
    can anyone help me to solve this ?Then you are updating the component on the second tab. Fix your code.

  • Merging multiples of the same photo into one

    I remember reading a couple tutorials on how to do this weeks ago, but now i cannot seem to remember what to search for to find a tutorial on this.
    I multiple photos, its the same location (tripod) with me in a different position in each frame. I want to merge each frame into one picture so in one picture there are multiples of myself in different positions.
    thanks!

    You'll have to use File->Scripts->Load Files into Stack to load all the images into a single document, each on it's own layer, select all the layers and go to Edit->Auto-Align Layers. If all went well then you should be able to achieve your effect using a couple of simple layer masks

  • How many EoIP tunnels at the same time? (One Anchor -- HA Pair )

    Hi Experts,
    With AP SSO, there should be two CAPWAP tunnels between an AP and the HA controller pair at the same time. Is it correct?
    Then how many EoIP tunnels between the internet anchor controller and the foreign controller HA pair at the same time?
    Thanks
    Cedar

    Hi Cedar,
    in AP SSO, only single CAPWAP tunnel maintan at a time & see the below reference for details.
    http://www.cisco.com/en/US/products/ps10315/products_tech_note09186a0080bd3504.shtml
    There is only one CAPWAP tunnel maintained at a time between the APs and the WLC that is in an Active state. The overall goal for the addition of AP SSO support to the Cisco Unified Wireless LAN was to reduce major downtime in wireless networks due to failure conditions that may occur due to box failover or network failover.This allows the access point (AP) to establish a CAPWAP tunnel with the Active WLC and share a mirror copy of the AP database with the Standby WLC. The APs do not go into the Discovery state when the Active WLC fails and the Standby WLC takes over the network as the Active WLC.
    in the same sense, EoIP tunnel limitation will be 71 for a anchor controller. See below
    https://supportforums.cisco.com/thread/2123756
    HTH
    Rasika
    *** Pls rate all useful responses ****

  • How to display data in the same row

    Hi i have a data like this
    sales_order_no shipped_amount aggregate_source_order_num
    1 10000 sao/1
    1 10000 sao/2
    2 10000 sao/4
    2 10000 sao/5
    2 10000 sao/6
    now i want to disply like this:
    sales_order_no shipped_amount aggregate_source_order_num
    1 10000 sao/1,sao/2
    2 10000 sao/4,sao/5,sao/6
    can anybody help me how to do it??
    i really appreciate your help.

    or
    SQL> set linesize 120;
    SQL> with sales_order as
      2   (select 1 sales_order_no, 10000 shipped_amount, 'sao/1' aggregate_source_order_num from dual union all
      3    select 1 sales_order_no, 10000 shipped_amount, 'sao/2' aggregate_source_order_num from dual union all
      4    select 2 sales_order_no, 10000 shipped_amount, 'sao/4' aggregate_source_order_num from dual union all
      5    select 2 sales_order_no, 10000 shipped_amount, 'sao/5' aggregate_source_order_num from dual union all
      6    select 2 sales_order_no, 10000 shipped_amount, 'sao/6' aggregate_source_order_num from dual)
      7  select so.sales_order_no,
      8         so.shipped_amount,
      9         substr(max(substr(sys_connect_by_path(so.aggregate_source_order_num,','),2)),1,60) aggregate_source_order_num
    10    from (select sales_order_no,
    11                 shipped_amount,
    12                 aggregate_source_order_num,
    13                 row_number() over (partition by sales_order_no, shipped_amount
    14                                    order by sales_order_no, shipped_amount) rn
    15            from sales_order) so
    16  start with so.rn = 1
    17  connect by so.rn = prior so.rn + 1
    18  and prior so.sales_order_no = so.sales_order_no
    19  group by so.sales_order_no,
    20           so.shipped_amount;
    SALES_ORDER_NO SHIPPED_AMOUNT AGGREGATE_SOURCE_ORDER_NUM
                 1          10000 sao/1,sao/2
                 2          10000 sao/4,sao/5,sao/6
    SQL>

  • How to Print Multiples time the same psf on one sheet

    Hi,
    I'm looking for the equivalent of rectangular array tool in Autocad, to print recto/verso buisness cards so I could print multiple cards per pages.
    With the multiple tool I just get one card, it doesn't seem to work.
    Thx for your help,
    Matt.

    Thx !
    The Ctrl technique worked fined,
    I wished there was a better tool to do this, but it worked !

  • How to Print Multiples time the same pdf on one sheet

    I see many have asked this question. This can be acheived easuly in the print dialogues. It is applicable for all applications which can open the print dialogue.
    Try the following!
    With the Print window open, make sure that the “Pages per sheet” setting is set to “2 pages” and that the “Page range” value is “Pages: 1,1?
    if your document has 2 pages and you have to print 2 pages in one sheet 2 times, set the Pages per Sheet to 4 & Page Range Value as "1,2,1,2"
    i hope this helps.

    Thx !
    The Ctrl technique worked fined,
    I wished there was a better tool to do this, but it worked !

  • How to insert data to the specified row column of the multi column list box

    Hi All
    How do i insert data into the specified column of the multi cplumn list box?
    I have a table that containsall station nos and name.Then another table contains the data the various stations having at  for 24 hrs.That is 12 am to 11 pm.
    And i want to display each stations details as follows using a multi column list box/table
    My stationinfo table
    stnno   stnname......................
    s1           stn1
    s2            stn2
    s3             stn3
    The other table
    stnno      sysdatetime       data
    s1             12am                   1
    s2              12am                   4
    s1               1  am                 2
    So the station s1,s2.... will have data for 24 hrs.
    And i want to display it as follows using a multicolumn listbox
    stnname        12am   1 am ......................................11pm
    s1                   ...................
    s2                 ........................
    What i have in my  mind is to get all station nos
    and in a for loop get the station's data from 12 am to 11 pm
    or
    select every statios data for each hor.But in this case i have to query the database 24 times.So i dont think its a good way.
    Or any other better query available?
    Can anybody suggest me a good idea?
    One more thing...how to insert data into the specified field row or column of a multi column list box?
    Thanks in advance

    hi
    i want to know,,can u say ur need clearly...and i attached two image u see that one
    Indrajit
    | [email protected] | [email protected] .
    Attachments:
    station.JPG ‏35 KB
    station2.JPG ‏79 KB

  • I have a large number of photos imported into iPhoto with the dates wrong.  How can I adjust multiple photos (with varying dates) to the same, correct, date?

    I have a large number of photos imported into iPhoto with the dates wrong.  How can I adjust multiple photos (with varying dates) to the same, correct, date?

    If I understand you correctly, when you enter a date in the Adjust Date and Time window, the picture does not update with the date you enter.  If that is the case then something is wrong with iPhoto or your perhaps your library.
    How large a date change are you putting in?  iPhoto currently has an issue with date changes beyond about 60 years at a time.  If the difference between the current date on the image and the date you are entering is beyond that range that may explain why this is not working.
    If that is not the case:
    Remove the following to the trash and restart the computer and try again:
    Home > Library > Caches > com.apple.iphoto
    Home > Library > Preferences > com.apple.iPhoto (There may be more than one. Remove them all.)
    ---NOTE: to get to the "home > library" hold down option on the keyboard and click on "Go" > "Library" while in the Finder.
    Let me know the results.

  • How to change the year in a range of column dates to the new year?

    How to change the year in a range of column dates to the new year?

    Depends on the pattern of the dates. The last procedure will work for any pattern, or no pattern at all.
    For examples.the dates are assumed to be in column A, starting at A2
    Sequential dates?
    Enter first updated date in the first cell.
    Enter =A2+1 in cell A3. Copy the cell.
    Select A3 to the end of the list. Paste.
    With the cells still selected, Copy, then go Edit > Paste Values.
    Evenly spaced dates?
    Same procedure as above, but replace +1 in the formula with + and the number of days between dates in the list.
    Randomly spaced dates?
    Select cell B2. Press option-left arrow to insert a (temporary) column to the left of column B.
    Click on the empty cell B2 in the new column. Enter the formula below:
    =DATE(YEAR(A)+1,MONTH(A),DAY(A))
    Copy the cell, then select B2 - Bn where n is the last ow containing a date to be converted. Paste,
    With the cells still selected, Copy.
    Click on A2, then go Edit > Paste values.
    Click on the column B reference tab to select all of column B.
    Hover the mouse over the right end of the reference tab, and click the black triangle when it appears.
    Choose Delete Column from the menu that appears.
    Regards,
    Barry

Maybe you are looking for