Requirement of Beeping - how to get subtotals for each combination of 2 columns val

Hi gurus, Experts and all,.

Help me please with my reporting requirement, on how to code this in PIF. Thank you.

Requirement: I need to get the subtotals for each value of the combination of two columns.

Columns example: team group AMOUNT

Sample column values: placed Team1 100
Group b... Team2... 200

GroupA - Team1 Subtotals = 500 (value of the sample only)
GroupA - Team2 Subtotals = 400 (value of the sample only)
Group b - Team1 Subtotals = 600 (value of the sample only)
Group b - Team2 Subtotals = 200 (value of the sample only)

GrandTotal = 1700

Thank you.

Jean Paul
BEEP newbie

Published by: user10955574 on October 28, 2010 05:40

 -  - 

output for data

GROUPA - TEAM1 - 200
GROUPB - TEAM1 - 300
GROUPC - TEAM2 - 400
GROUPD - TEAM2 - 500
GROUPA - TEAM3 - 600
GROUPB - TEAM3 - 700
GROUPC - TEAM4 - 800
GROUPD - TEAM4 - 900
GROUPA - TEAM5 - 1000

Tags: Business Intelligence

Similar Questions

  • Requirement of Beeping - how to get the number of combination of several columns

    Hi gurus, Experts and all,.

    Help me please how this code to the BEEP.

    I need to get the number of each combination of 6 columns if the combination is repeated.

    Columns example: number team responsible for Group Type reason
    The example columns: placed Team1 M1 M1 T1 won 2
    GroupA Team1 H2 M2 T1 loss 1
    GroupB Team2 H2 M3 T2 won 1
    GroupB Team2 H3 M3 T2 loss 2

    Thank you very much

    Jean Paul
    BEEP newbie

    Published by: user10955574 on October 28, 2010 20:15

    Published by: user10955574 on October 29, 2010 03:06

    I sent you the file. Check your mailbox.

  • How to get LASTDAY for each month between data dates...

    Hi friend

    I have a doubt, how to get LASTDAY for each month between data dates...

    for ex:
    My contribution will be like this
    date = 01/12/2011
    To date = 14/04/2011

    And I need an output like
    31/01/2011
    28/02/2011
    31/03/2011

    is it possible to achieve through sql query in oracle
    Thanks in advance for all friends to help him

    Hello

    Something like this (assuming that the dates are originally VARCHAR2s):

    SQL> var dt_start varchar2(10)
    SQL> var dt_end varchar2(10)
    SQL> exec :dt_start := '12-01-2011'
    
    PL/SQL procedure successfully completed
    
    SQL> exec :dt_end := '14-04-2011'
    
    PL/SQL procedure successfully completed
    
    SQL>
    SQL> select last_day(
      2           add_months(
      3             trunc(to_date(:dt_start,'DD-MM-YYYY'),'MM'),
      4             level-1
      5           )
      6         ) as result
      7  from dual
      8  connect by level <= months_between(to_date(:dt_end,'DD-MM-YYYY'), to_date(:dt_start,'DD-MM-YYYY'))
      9  ;
    
    RESULT
    -----------
    31/01/2011
    28/02/2011
    31/03/2011
     
    

    If the dates are already of the date data type, simply remove the to_date function.

  • How to get drivers for my smart tv S320/PB74300101

    How to get drivers for my smart tv S320/PB74300101

    I would start by going to a site of Packard Bell. They made your TV and they argue, not HP.

    This is the forum of global consumer of Hewlett Packard (HP).

    Best regards
    ERICO

  • How to get licenses for charity in India (Vipassana International Academy)

    I want Licenses to charity for A worldwide non-profit organization. Our main office is located in India (Vipassana International Academy)

    Please suggest who to contact and how to apply, I tried the link of
    But it displays error for the Indian region.
    Please suggest how to get licenses for charity in India

    See the following topics:

    http://www.Microsoft.com/licensing/

    There is a section for charity.

  • I canceled my account same day and join as convert PDF word has not converted correctly how to get credit for membership cancellation

    I canceled my account same day and join as convert PDF word has not converted correctly how to get credit for membership cancellation

    You need to contact Adobe customer service:

    They will check and help you. (Live chat)

    Contact the customer service

  • How to get alerts for hardware failures

    Hai,

    As I am new on the vmware I'm interested to know how many VI troubleshooting if something goes wrong?

    How to get alerts for hardware failures? IF a drive failed in RAID1 how to identify? VM is grayed out, no use via the GUI and Console, where to check?

    If anyone knows where to find the answers for part of vsphere troubleshooting please let me know, is there any blogs or sites for beginners? Am in the theritical part. I need troubleshooting documents or videos.

    Thanks in advance

    In vSphere, you can monitor hardware heakth and status and receive alerts in the client vSphere also depending on the hardware that you use you can take for that hardware manufacturers probes.

    For troubleshooting / you can check this site - http://www.vmware.com/support/product-support/vsphere/

  • How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    If you want the formula is the same (B2 - C2) in the cell of each column you must change it as ($B$ - 2$ C$ 2). Then copy it, select the whole column and paste.

  • How to get the string (specified by row and column) of txt file with labview

    Hello world

    How to get the string (specified by row and column) of txt file with labview

    THX

    As far as I know, a text file has no column.  Be more specific.  Do you mean something like the 5th word on line 4, where the words are separated by a space, and lines are separated by a newline character?  You can read from the spreadsheet String function and set the delimiter to a space.  This will produce a 2D channels table.  Then use the table to index and give the line number and column number.

  • Feature: How to get subtotals and total general whole?

    I am wrtiting a report using SQL and SQL * more to get subtotals and a total general. The COMPUTE function allows me to CALCULATE SUM on a group, but it only gives me subtotals. I am interested in getting a report with subtotals and a final OVERALL TOTAL. Is this possible using SQL * more?

    Here is my current code that gives me subtotals:
    COMPUTE SUM LABEL subtotal OF sal ON deptno
    SELECT ename, sal, deptno 
    FROM emp 
    ORDER BY deptno;
    
    ENAME             SAL     DEPTNO
    ---------- ---------- ----------
    CLARK            2450         10
    VOLLMAN          5000
    MILLER           1300
               ---------- **********
                     8750 subtotal
    
    SMITH             800         20
    ADAMS            1100
    FORD             3000
    SCOTT            3000
    JONES            2975
               ---------- **********
                    10875 subtotal
    
    ALLEN            1600         30
    BLAKE            2850
    MARTIN           1250
    JAMES             950
    TURNER           1500
    WARD             1250
               ---------- **********
                     9400 subtotal
    Here is the code for a grand total:
    Column DUMMY NOPRINT
    COMPUTE SUM OF sal ON DUMMY
    BREAK ON DUMMY
    SELECT NULL DUMMY, ename, sal, deptno 
    FROM emp 
    ORDER BY deptno;
    
    ENAME             SAL     DEPTNO
    ---------- ---------- ----------
    CLARK            2450              10
    VOLLMAN          5000          10
    MILLER           1300          10
    SMITH             800              20
    ADAMS            1100          20
    FORD             3000          20
    SCOTT            3000          20
    JONES            2975          20
    ALLEN            1600              30
    BLAKE            2850          30
    MARTIN           1250          30
    JAMES             950          30
    TURNER           1500          30
    WARD             1250          30
               ---------- 
                    29025
    How can I combine the two on a single report?

    Hello

    If you want to do with the SQL * Plus COMPUTE command, just give another CALCULATION order "CARRY ON".
    Add 'REPORT ON' to the PAUSE command, also.

    BREAK ON  deptno     ON  REPORT
    
    COMPUTE SUM LABEL subtotal     OF sal ON deptno
    COMPUTE SUM LABEL grandtotal    OF sal ON REPORT
    
    SELECT    ename, sal, deptno
    FROM        scott.emp
    ORDER BY  deptno;
    

    Output:

    ENAME             SAL     DEPTNO
    ---------- ---------- ----------
    CLARK            2450         10
    KING             5000
    MILLER           1300
               ---------- **********
                     8750 subtotal
    JONES            2975         20
    FORD             3000
    ADAMS            1100
    SMITH             800
    SCOTT            3000
               ---------- **********
                    10875 subtotal
    WARD             1250         30
    TURNER           1500
    ALLEN            1600
    JAMES             950
    BLAKE            2850
    MARTIN           1250
               ---------- **********
                     9400 subtotal
               ----------
    grandtotal      29025
    
    14 rows selected.
    
  • How to get credit for a movie that I rented on ITunes via my Apple TV

    Yesterday, I rented a movie on ITunes via my Apple TV. When I started to watch the movie and it turned out to be cut the Director (so every scene had an announcer describing the action). However who stated not anywhere on the news of the film until I chose to rent it out. I think that someone downloaded the wrong version of the film erroneously. The movement was 'joy '.

    Anyway, how can I go to get credit for my movie rentals?

    With the receipt of electronic mail, use the report a problem link.

  • How to get replacement for Windows software

    original title: get a CD of Windows Vista Home Premium x 32 to reinstall the software on my PC corrupted who does not run correctly.

    I need to know how to get a replacement of Windows Vista Edition Home Premium x 32 CD so I can reinstall Windows on my corrupted PC that is not running properly. I heard that you can get one with an approximate cost of $10,00. Thanks for your time

    I need to know how to get a replacement of Windows Vista Edition Home Premium x 32 CD so I can reinstall Windows on my corrupted PC that is not running properly. I heard that you can get one with an approximate cost of $10,00. Thanks for your time

    Hey firehawk9591

    read the information on the microsoft below link

    How to replace Microsoft software or hardware, order service packs and replace product manuals

    http://support.Microsoft.com/kb/326246

    If vista came preinstalled contact, the direct computer manufacturer and ask them to send you recovery disks vista to reinstall operating system back tp the way it was when you bought it

    they do it for a nominal cost of $

    Walter, the time zone traveller

  • I won a mini iPad 4 generation how to get applecare for my iPad

    Hi I have a question I win an iPad mini 4 generation is possible to get Applecare for my mini iPad 4 given that I have not received.

    Thank you for your support

    Rolly

    Hello, Rolly!

    No, unfortunately, you will need to have bought the iPad in the last 60 days to add AppleCare, and I do not win it counts as purchase.

    Here's more information.

    http://www.Apple.com/support/products/iPad.html

  • How to get data for submission of form using REST or SOAP API

    Hello

    Can someone let me know how to recover data using REST or SOAP API for example, also I need to know how to delete some data from form submission using REST or SOAP API for submission of form. Answer please I need to implement in one of my projects.

    Thanks and greetings

    Angela

    Post edited by: Md Shahid

    Here the answer How to recover data for submission of form using REST or SOAP API

  • How to make replace() for each symbol in the string instead of the first meeting only?

    Hello!

    This is my simple test script:

    var str = ' re | PLA | ce »;

    var strRep str.toString () = replace (' | ', '-');

    Alert (strRep);

    I'd get a re-pla-this result string.

    But I didn't get my only first symbol replaced:

    replace.png

    Can you advise me please, how to get all the symbols replaced?

    Thank you!

    Thank you very much, Xavier!

    Just for reference, this line will work perfectly:

    Alert (str.toString () replace (new RegExp ("|", "g"), '-'));

Maybe you are looking for