Move "SUM" from bottom to top of section.

I have a Webi document set up that returns distinct sets of results.
The results have a break by Region name. There are between 2 and 50 regions that each display a distinct set of data with a blank row in between for separation.
The problem are the sums. I'd like to have the Region name and summary formulas display on top of each Region instead of the bottom.
I.E.
Let's assume this is my report with two distinct regional sets of data
REGION | EMPLOYEE | DAYS WORKED I WIDGETS BUILT I WIDGETS TO COMPLETE I REVENUE
    A           EMP 1               10                         10                                 0                            $100
    A           EMP 1               10                         10                                 0                            $100
REGION | EMPLOYEE | DAYS WORKED I WIDGETS BUILT I WIDGETS TO COMPLETE I REVENUE
    B            EMP 1               10                         10                                 0                            $100
    B            EMP 1               10                         10                                 0                            $100
Currently, if I were to sum the regions I'd get something like this:
REGION | EMPLOYEE | DAYS WORKED I WIDGETS BUILT I WIDGETS TO COMPLETE I REVENUE
    A           EMP 1               10                         10                                 0                            $100
    A           EMP 1               10                         10                                 0                            $100
    A                                   20                         20                                 0                            $200
REGION | EMPLOYEE | DAYS WORKED I WIDGETS BUILT I WIDGETS TO COMPLETE I REVENUE
    B            EMP 1               10                         10                                 0                            $100
    B            EMP 1               20                         20                                 0                            $200
    B                                   30                         30                                 0                            $300
I know how to create the sum formulas elsewhere but how can I move that SUM row above the column headings while only having it repeat after my primary break?

Hi ,
This can be done by using some simple tricks:
can I move that SUM row above the column headings
You can do this by adding one more block (having single row with no headers) just above the main block and applying section on the region. Now you have to adjust the relative position of the two blocks so that it adjusts in the same column.
If you want to display it below the column heading then add one more header row below the column heading. change its background color to white and place the key figures in the respective header cells. Here if you have not applied section then you may need to add the context operators(ISum(..) in (Break or region)) in the formulae to get the desired result.
Regards,
Rohit

Similar Messages

  • Read lines of a text file, From bottom to top

    read the last row first,
    from bottom to top,
    how to do it?
    Thanks for help

    If the index.txt contains
    1
    2
    3I want to save it as
    3
    2
    1But I got is
    1
    2
    3 3 2 1Please see my code, thanks
    import java.io.*;
    import java.util.List;
    import java.util.ArrayList;
    public class Reverse {
        private String[] x;
        public void process(String dir) {
            try {
             File f1 = new File(dir,"index.txt");
                    BufferedReader br = new BufferedReader(new FileReader(f1));
                    String line;
                    List<String> idList = new ArrayList<String>();
                    while (((line=br.readLine())!=null)){
                        idList.add(line);
                    x = idList.toArray(new String[idList.size()]);
                    f1.delete();
            catch (Exception e)
                   System.err.println("File input error");
                   e.printStackTrace ();
             try {    
             File fileIndex = new File(dir,"index.txt");
                     FileWriter outFileIndex = new FileWriter(fileIndex,true);
                     BufferedWriter outIndex = new BufferedWriter(outFileIndex);
                     for (int i = x.length-1 ; i>0; i--) {
                        StringBuffer buffer = new StringBuffer();
                        buffer.append(x);
    buffer.append("\n");
    outIndex.write(buffer.toString());
    outIndex.flush();
    catch (Exception e)
    System.err.println("File input error");
    e.printStackTrace ();
    public static void main(String args[])
    Reverse r = new Reverse();
    r.process(args[0]);

  • TS1382 songs are playing from bottom to top instead of top to bottom in playlist - remedy?

    songs are playing from bottom to top instead of top to bottom in playlists...any remedy?

    Can you please post some screenshots ?
    Also have you tried to test by rotating the text frame ?
    Thanks,
    Sanjit

  • HT4623 I screwed up.  I was trying to SYNC and something (error msg) happened.  I tried to continue the SYNC and now my IPhone is dead.  All I can get when I turn it on is a picture, from bottom  to top, I have an WSB connector, an up arrow, and an iTunes

    I screwed up.  I was trying to SYNC and something (error msg) happened.  I tried to continue the SYNC and now my IPhone is dead.  All I can get when I turn it on is a picture, from bottom  to top, I have an WSB connector, an up arrow, and an iTunes icon.  I can't use the phone.  And it's my only phone.  What can I do to rectify this situation.

    It's telling you to connect to ITunes and restore your phone. This will have to be done with a USB cable and iphone connector that came with your charger.

  • Move Label From Down To Top The Frame?

    greetings all
    i want to make something like movie credits
    i have an empy frame and i have some labels
    and i want when the frame runs labels move in turn from down to top
    any ideas,how to do that?
    thanks in advance

    thanks Encephalopathic for the help
    but i have just two questions about your code:
    i don't understand what's DELTA_Y and what's it's function here:
    if (y > 0)
              y -= DELTA_Y;
    }and i have added another label and set it to be shown after the first label
    but what happens is the opposite,i don't know why?
    here's what i did:
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.Timer;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    public class test_timer
      private static final int Y_MAX = 300;
      protected static final int X_POS = 10;
      protected static final int DELTA_Y = 2;
      private static final int DELAY_TIME = 100;
      private static int y = Y_MAX;
      private static JPanel panel;
      public static void main(String[] args)
        JFrame frame = new JFrame("Credits");
        final JLabel label = new JLabel("Updating Component Test", JLabel.CENTER);
        final JLabel label2 = new JLabel("Statement Two", JLabel.CENTER);
        label.setFont(new Font("Courier New", Font.BOLD, 15));
        label.setSize(label.getPreferredSize());
        label.setLocation(X_POS, y);
        label.setForeground(Color.WHITE);
        label2.setFont(new Font("Courier New", Font.BOLD, 15));
        label2.setSize(label2.getPreferredSize());
        //i set the label2 to be down label1
        label2.setLocation(X_POS, y+25);
        label2.setForeground(Color.WHITE);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        panel = new JPanel();
        panel.setPreferredSize(new Dimension(2*Y_MAX, Y_MAX));
        panel.setLayout(null);
        panel.setBackground(Color.BLACK);
        panel.add(label);
        //i added label2 after label1
        panel.add(label2);       
        frame.add(panel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        new Timer(DELAY_TIME, new ActionListener()
          public void actionPerformed(ActionEvent ae)
            if (y > 0)
              y -= DELTA_Y;
              label.setLocation(X_POS, y);
              //set the new location to be less than label1 location
              label2.setLocation(X_POS,y-40);
        }).start();
    }

  • Report links from bottom to top

    Hi,
    Can someone please guide me one this issue: I want to bring the links ( return, download etc...) that usually displays at the bottom of report to top of report. Can someone help me on this issue?

    Hey user,
    I suppose this is not possible,as in the edit dashboard the report links are given by default nothing is being customized.It is been used what is given by the product.
    Lets see more comments on this issue.
    Hope helps you.
    Cheers,
    KK

  • Dynamic field flow direction Bottom to top

    Hi everybody,
    I have two wrapped fields. I'd like the field on the bottom to push up the first the page. Is it possible ? With javascript ? I know that the flow direction is Top to Bottom but is the reverse possible ?
    Many thanks

    Hi Ratnesh,
    Here is the link to share the file : https://workspaces.acrobat.com/?d=sHcPjp3SH48eN9cQP-vjjA
    In the box below, when I type several lines, the text is going from top to bottom. I would like it to go from bottom to top and push the box which is above. I guess it's not possible but ... a miracle
    Thanks for your help.

  • Is it possible to move audiobook from the playlist to the book section on my ipod touch

    In the past I was able to download audiobooks to the ipod touch using Overdrive Media and itune. The audiobooks went into the audiobook or book section on my ipod and everything worked great. With the new software upgrade to itune, the audiobooks go into a playlist and things are not so great. An example - the audiobook in the playlist will not remember my position when I turn the ipod off and then turn it back on. It will remember the part of the audiobook but not the chapter. It always goes back to chapter 1 of the part in use.
    SOMEHOW, using the new software, I was able to move the audiobooks from the playlist on the ipod to the audiobook section on the ipod and again, everything works great. However, all new audiobook copied to the ipod go to a playlist and I can't, for the life of me, remember what I did to move the audiobook from the playlist on the ipod to the audiobook section on the ipod.
    Help!

    I am having the exact same issue with Overdrive and iTunes (I download library books) - this all started after I upgraded to the new version on both iTunes and my iPod Touch.  I also was able to get one book to move from the playlist to the audio books section, but cannot get it to work again (actually, it now shows up in both).  The first time that it worked, I restarted the iPod.  What is really strange is the books transfer from Overdrive to the Book section in iTunes, but it does not appear on the iPod.  So basically, what is seen in iTunes when the iPod is connected, is not what is visible on the iPod Touch.  This is really getting to me as I mostly use my iPod for listenting to Audio Books.  I agree  HELP!

  • SSRS: Setting Header from Top/Footer from Bottom

    Hello there guys
    We're using RDLC-Files to create some word reports.
    In our previous version, where we used RDL-Files on SQL 2008 R2, the Margin-Properties (Header from Top / Footer from Bottom) didn't get set at all an was always 0.
    This behaviour was reported, but marked by Microsoft as 'By design'. Since I can't post a link, just google for
    "Word export sets margin-top, margin-bottom to 0mm".
    Interesting enought, on our new Version with RDLC, this properties are always set to 1.27cm, but ignore the Margin-Properties of the Report-Page at all.
    Since we'd like to port our reports from the old RDLs to the new RDLCs, it would be the easiest way, if we could kindahow set these two properties.
    But so far I didn't find a possiblity. Is there one, to tell the Word-Renderer what we'd like to set there?
    Thanks in advance
    Matthias Müller

    Hi Matthias,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Could I connect the lap top to TV and watch movies and control the lap top from a distance?

    could I connect the Apple lap top to my TV to watch movies and control the lap top from a distance just like the Window lap top???

    Check out Apple TV.  It is a wireless interface to your TV.  It may be the best $99 investment you can make for entertainment on your TV.  It simply requires a standard $10 HDMI cable, not supplied with the Apple TV unit.  Through Apple TV, with Mavericks, you can use the TV as a standard OS X monitor or for entertainment.  Also check out the Beamer software to stream videos to it from your Mac.
    Apple TV requires a Mid 2011 or newer MacBook Air with OS X Lion v10.7.5 or later.
    If your MBA is not new enough you can use the AirParrot application but the video quality is not as high as with a newer MBA.  It also streams from iOS devices.
    http://www.apple.com/appletv/
    http://www.apple.com/appletv/airplay/
    http://store.apple.com/us/ipod/ipod-accessories/apple-tv
    http://www.apple.com/osx/whats-new/features.html#displays
    http://www.amazon.com/AmazonBasics-High-Speed-HDMI-Cable-Meters/dp/B003L1ZYYM/re f=sr_1_1?ie=UTF8&qid=1385514116&sr=8-1&keywords=hdmi+cable
    AirPlay is available on all devices running iOS 4.3 or later. Some features require the latest software. Second-generation Apple TV or later required.
    AirPlay Mirroring is available with iPhone 4s or later; iPad 2 or later; iPad mini; iPod touch (5th generation); and iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), MacBook Pro (Early 2011 or newer), and Mac Pro (Late 2013) with OS X Mountain Lion or later.

  • Is it possible to change the display order of Apple TV applications on my home screen?  i.e. move Watch ESPN toward the top, move the WSJ to the bottom, etc.

    Is it possible to change the display order of Apple TV applications on my home screen?  i.e. move Watch ESPN toward the top, move the WSJ to the bottom, etc.  That way you won't have to scroll all the way down to the bottom to access an applicaton you use most often.

    Yes. Just select and hold until the app starts to jiggle and then you can move it.

  • Is it Possible to set Top and Bottom Margin for each section?

    I've been googling and haven't found an answer to this problem.
    I need to specify a different top and bottom margin for each section in my document. The "document margins" apply to the whole document, so I've set those to a low amount, and I can set the Layout Left and right margins - but the "Layout Margins" do not allow "top and bottom" only "before and after". This is a critical difference, because if you have 2 pages in a section, only the first page gets the "before" margin, and only the 2nd page gets the "after" margin. This is a little odd, and I'm frankly surprised we are in version 4 of this app - and you can't set top and bottom margins for each section.
    If you insert a "layout break" on each page, then you can get the margins to reset for each page inside a section, but this is not an acceptable workaround as I need to setup templates for staff to use that will "flow" like a normal word processor.
    Does any one have any suggestions?

    On page 49 in the English Guide version it tells you about Lay-out margins. This is the text
    *Defining Layout Margins*
    *In a word processing document, a layout margin is the space around columns in a*
    layout.
    *To change the layout margin in a word processing document:*
    *1 Click in a column.*
    *2 Click Inspector in the toolbar, click the Layout button, and then click Layout.*
    *3 To change the outside margins of the column(s), enter values in the Left and Right*
    *fields under Layout Margins.*
    *4 To specify the amount of space above and below the column(s), enter values in the*
    *Before and After fields under Layout Margins.*
    *The new margins can’t extend outside the page margins set for the document in the*
    *Document inspector.*
    I hope this helps.

  • I have QT Pro 7.6.6 and want to delete all audio (5 tracks) from a selected in-out section of a .mov file. Then, add new audio. How do I do that?

    I have QT Pro 7.6.6 and want to delete all audio (5 tracks) from a selected in-out section of a .mov file. Then, add new audio. How do I do that?

    If I 1) knew TeX well enough to fix it, and 2) could get the guy to answer the phone or email so as to give me the sourcecode or to fix it himself, I wouldn't have bothered figuring out that the thing could be fixed one page at a time by a) getting a copy of acrobat pro, b) figuring out how to turn on all of the extra toolkits, c) finding the edit object button in randomly named toolkit, d) right clicking on the chapter title and selecting the e) ever so obvious "delete clip" menu selection.
    At this point I would absolutely love to never have to touch an adobe product again in my life, but my hand has been dealt and if I'm going to print the manual for a software library that we've spent a cumulative $70,000 for, I have to figure this out and I really don't want to have to hit [Page Down], [Ctrl] + [A], Right click, delete clip for >700 pages.
    I felt certain that once I'd figured out how to shift the pages down using ghostscript so first two lines of each page weren't getting cut off in the printer non-printable region, and finally figured out this that a relatively simple scripting solution would be immediately apparant.  I mean, there are APIs for both applescript and javascript, but I'm mystified by how to get to the edit object feature from within them, much less how to tell that feature to delete clips for everything on a page.

  • How do i move music from iphone to new lap top

    how do I move music from iPhone to iTunes in lap top

    Your best bet is to copy your iTunes Library from your old computer to your new one:
    iTunes: How to move your music to a new computer
    However, if you do not have access to the old library, then here are some tips for moving music from your iOS device to a new computer from fellow Support Community member turingtest2:
    TT2's iOS device to build iTunes library
    Best of luck,
    GB

  • Every time I try to upload MOV files from my iphone 5s onto my adobe premiere elements on windows 8 i get 'the importer reported a generic error'

    every time I try to upload MOV files from my iphone 5s onto my adobe premiere elements on windows 8 i get 'the importer reported a generic error'

    jade harding
    What version of Premiere Elements are you using on Windows 8.1 64 bit? For now I will assume Premiere Elements 12 in a NTSC set up.
    Your iPhone 5s video is expected to be 1080p @ 30 progressive frames per second? Do you confirm that? Because of the source of your video, it is highly likely that you are dealing with a variable frame rate.
    Please give the following a try to see if you then have an "importable" product to take into Premiere Elements presumed 12/12.1.
    Download and install the free HandBrake program.
    http://handbrake.fr/
    Import your video file into the program.
    Make sure you browse to and set Destination (suggested Desktop location)
    Go to the Video Tab and set
    Video codec = H.264 (x264)
    Frame Rate = 29.97
    put a dot next to Constant for the Frame Rate
    Click on the Start at the top left of the workspace
    Wait for the "Queue Finished" to appear in the progress bar at the bottom left of the workspace.
    Then see if this H.264.mp4 (1920 x 1080 @ 29.97 progressive frames per second file can be imported into Premiere Elements 12 project with a manually set project preset of NTSC/DSLR/1080p/DLSR 1080p30@ 29.97.
    Details for setting manual project preset can be found in
    ATR Premiere Elements Troubleshooting: PE11: Accuracy of Automatic Project Preset (New Project Dialog) Setting
    The details that I have posted in this reply are customized for Premiere Elements and should work fine for you.
    We will be watching for your results.
    ATR

Maybe you are looking for