Combine the three columns into a single

Hello

We have a hierarchy of dimension organization at three levels: company-> Group-> business units operating... each with a total of actual AMAURY. (Business Units drive business groups and business groups roll in society)

I want to display the data for the amounts of the CDA in a simple table report but I need to have the name of the entity (company, group operating Business Unit) doesn't appear in the same column, only not as a hierarchy.

Example:

Company $1-6500
Working Group 1-2 $500
Business Unit 1-$1000
Business Unit 2-$1500
Group 2-$4000
Business Unit 3-$3000
Business Unit 4-$1000

Is this possible?

TIA,
Ash.

A possible solution: you have to do four-speed with two columns.

One for the company
One for the Business unit
One group of operation

And the other to a Union of the first three reports.
And you need to add a column to sort (hierarchy pesudo) If you want to see the values in the correct order.

Tags: Business Intelligence

Similar Questions

  • combining the three queries into one

    Hello everyone, I have the following queries in a format similar to below and I would like to combine it with one... I know I could use an if statement but is it possible to do in pure sql
    select t.p1,
           t.p2,
           t.p3,
           t.p4
    from tbl_one t
    where t.p4 like (p4_parameter)
    order by t.p1
    
    select t.p1,
           t.p2,
           t.p3,
           t.p4
    from tbl_one t
    where upper(t.p1) like upper ((p1_parameter) || '%');
    
    select t.p1,
           t.p2,
           t.p3,
           t.p4
    from tbl_one t
    where t.p1 != 0;

    combine all three queries with GOLD seats...

    select t.p1,
           t.p2,
           t.p3,
           t.p4
    from tbl_one t
    where t.p4 like (p4_parameter)
    and upper(t.p1) like upper ((p1_parameter) || '%')
    and t.p1 != 0;
    

    and as suggested madhu, while displaying u should take care of type of data as well...

    If you want to compare t.p1! = 0
    you need to replace

    t.P1! = 0 to t.p1! = '0'

    or if you want
    t.P1! = 0 compared to not null
    the

    t.P1 is not null

    Concerning

    UMI

  • How to combine the two queries into a single

    Hi gurus,

    SQL > select * from v version $;

    BANNER

    ----------------------------------------------------------------

    Oracle Database 10g Release 10.2.0.4.0 - Production 64-bit

    PL/SQL Release 10.2.0.4.0 - Production

    CORE 10.2.0.4.0 Production

    AMT for Linux: release 10.2.0.4.0 - Production

    NLSRTL Version 10.2.0.4.0 - Production

    SQL >

    I have following two queries. How can I convert these two queries into one with the same result?

    1ST QUARTER

    SELECT id, $vdate, SupplierName, venddate, vid

    THE SELLER

    WHERE processid = 32

    AND venddate is null

    AND vid to (select vid from view_vid where type = 'PDX')

    AND (id, $vdate) not in (select id, $vdate from vkfl_is where task_id = 55)

    AND (id, $vdate) in (select id, vidate from market_data where marketed_date is null)

    AND id not in (select id from location)

    Q2

    SELECT id, $vdate, SupplierName, venddate, vid

    THE SELLER

    WHERE processid = 20

    AND venddate is null

    AND vid to (select vid from view_vid where type = 'PBX')

    AND (id, $vdate) not in (select id, $vdate from vkfl_is where task_id = 40)

    AND (id, $vdate) in (select id, vidate from market_data where region_date is null)

    AND id not in (select id from location)

    I can the UNION queries these two, but is there some way I can write a single query that gives me the same result as above two queries?

    Any help would be much appreciated

    Thanks in advance

    Sorry, it lack

    SELECT id, $vdate, SupplierName, venddate, vid

    THE SELLER

    ProcessID WHERE in (32.20)

    AND venddate is null

    AND vid to (select vid from view_vid where type = case when processid = 32

    then "PDX".

    else "PBX".

    end)

    AND (id, $vdate) not in (select id, $vdate from vkfl_is where task_id = case when processid = 32

    then 55

    40 else

    end)

    AND (id, $vdate) in (select id, vidate from market_data cases where processid = 32)

    then marketed_date

    of other region_date

    end to the null value

    )

    AND id not in (select id from location)

    Concerning

    Etbin

  • Combine the 2 columns in a single table

    Hello people.
    I have the following query:

    SELECT col1, COUNT (*)
    FROM table1
    WHERE ID = 10
    AND col1 IN (' a ',' B', 'C', d ', 'E', 'F', 'G', 'H', 'I')
    GROUP OF CUBE (col1);

    which generates:

    col1 COUNT (*)
    --------------- -----------------------
    A 7677
    B 25852
    A s
    D 176
    E 10
    F 127
    G 508
    H 6
    34357

    Now I have the same query with an additional condition (NR > 50):

    SELECT col1, COUNT (*)
    FROM table1
    WHERE ID = 10
    AND NR > 50
    AND col1 IN (' a ',' B', 'C', d ', 'E', 'F', 'G', 'H', 'I')
    GROUP OF CUBE (col1);

    Which generates:

    col1 COUNT (*)
    --------------- -----------------------
    A 4567
    B 14544
    A s
    D 16
    E 7
    F 105
    300 G
    F |
    19542

    I need to combine these 2 requests so I can get a report like this:

    col1 COUNT (*) COUNT (*)
    --------------- ----------------------- -----------------------
    A 4567 7677
    14544 25852 B
    1 1 C
    D 16 176
    7 10 E
    F 105 127
    G 300 508
    2 6 H
    19542 34357

    I tried something like:

    SELECT b.col1, COUNT (b.ID).
    (SELECT COUNT (d.ID)
    OF table1 d
    WHERE d.ID = 10
    AND d.NR > 50
    AND d.col1 IN (' a ',' B', 'C', d ', 'E', 'F', 'G', 'H', 'I')
    CUBE GROUP (d.col))
    Table 1 b
    WHERE b.ID = 10
    AND b.col1 IN (' a ',' B', 'C', d ', 'E', 'F', 'G', 'H', 'I')
    AND b.ID = d.ID?
    GROUP OF CUBE (b.VEHICLE_KIND_CL);

    but I can't get it to work.
    Any help will be much appreciated.

    Try:

    SELECT col1, COUNT(*) count_all, count(CASE WHEN nr > 50 THEN 1 END) count_over_fifty
    FROM   table1
    WHERE  ID=10
    AND    col1 IN ('A','B','C','D','E','F','G','H','I')
    GROUP BY CUBE(col1);
    
  • concatenate the strings from a column into a single row?

    How to concatenate strings from a column into a single line?

    Color
    ------
    Red
    Orange
    Blue
    Green

    And return a set of results as follows:

    Colors
    -------------------------
    Red, orange, blue, green

    Various ways can be found here:
    http://www.Oracle-base.com/articles/10G/StringAggregationTechniques.php

  • Combine the two columns of text

    I have two columns of text (say that name is a column and the name is the other)

    I would like to combine the two columns for the text of these two columns are in a column. (First name and last name in the same column)

    Is this possible? If so is there a tutorial somewhere?

    Hi Danielle,

    The & (concatenation operator) is your friend.

    Formula in D2 (fill down)

    "B2 &" "& C2.

    & joins elements into a single string.

    "" inserts a space.

    Kind regards

    Ian.

  • How to combine several pdf files into a single pdf file of document

    How to combine several pdf files into a single pdf file of the document?

    IF you use a Mac Version (I guess that even for the PC version) you and use the new handset functionality.

    1. To use Acrobat open without opening a PDF and go to file menu choose combine PDF.
    2. A small window opens
    3. Look for the files to combine
    4. Drag the window and gout.
    5. Search for the following file and repeat
    6. Drag the files to correct the order.
    7. Rename and save the PDF

    Its actually easier than using insert pages.

  • The combination of two columns in a single

    Hi guys,.

    Is it possible for a query to combine two columns into one? For example, lets say I have the following query:

    SELECT ID, FIRST_NAME, LAST_NAME
    EMPLOYEES

    I want the output to have two columns: one that contains the ID and the other containing name followed by a space followed by LAST_NAME. I know how to do this outside the query using coldfusion, but it save me a lot of work if there is some way that the query could do for me.

    Yes but the operand of concatenation varies somewhat from a database
    management system to the other.

    In Oracle, it would look this IIRC.

    SELECT ID, FIRST_NAME. ' ' || LAST_NAME AS FULL_NAME
    EMPLOYEES

  • I need to combine several PDF files into a single attachment on my iPhone. I subscribe to the $ 9 per month package, but I can't seem to find an option to combine the files of one attachment. Can you please help?

    I need to combine PDF files in a magnetic. I subscribe to the $ 9 per month package. Is this possible?

    Hello

    With Adobe Acrobat iOS app, we can only create PDF of it. To combine the documents, go to https://cloud.acrobat.com/combinepdf on your device browser.

    Thank you

    Abhishek

  • How to combine several scanned pages into a single pdf document pdf?

    Hi, I have 7 docs individual pdf I would like to combine into one.

    never used Acrobat Pro before, but this should be simple right?

    I just updated to v 9.3.2

    plmk?

    Thank you very much!

    There are several ways to combine PDF files

    File > combine > merge files into a single PDF file, or

    Open a PDF Document > insert pages, or

    Open a PDF, view > navigation panels > pages, drag and drop new files PDF in the pages Panel.

  • Combine the two projects into one

    I know it is a very popular question and I read many answers excellent previous answers.  The two most popular procedures seem to be simple copy - paste and use clips of compounds with copy / paste.  CPF has improved this process over the years and I ask the question again to get the benefit of current thinking.   I have an iMac (mid-2011) OS X 10.11.4 and FCP worm 10.2.2.  I have two separate events within the same library.  There is a completed project, with all the transitions, effects and music, located within each discipline.    Current ideas on how to combine these two projects into one would be greatly appreciated.

    Thank you.

    Copy and paste is the only method I know.

    Open the project in the timeline first.

    Open the second project in the timeline panel. Only one project appears at the same time.

    Select an item in the timeline and press command + A to select all, then control + C to copy.

    Use the project navigation arrows to return the first project:

    Move the playhead to where copied clips must be glued and press command + V.

    Al

  • Can I combine two PDF files into a single file?

    I would like to take two different files and combine them into a single PDF. Is this possible using Reader?

    Possible with Acrobat or PDF Pack online service.

  • How to merge three files into a single Director?

    Hello!

    If I'm doing a school project. We do a program. We have a home page with two buttons. Then we have two other pages.

    One of the pages is a quiz, so it has different issues and you are riding in the quiz, when you click on one of the three answers and then you get a result after five issues.

    The other page is with an illustration and several photos of reversal, which changes the illustration.

    Then... I wonder how I can put both pages (the quiz and the illustration page) so that they will be linked (using the buttons on the home page) to the home page?

    I hope I could explain my question!

    Best regards

    Lovisa

    Assume that three films named start, Quiz, and Illustration. Let us look at the buttons in each film, allowing you to do what you want.

    1. in the startup movie are two buttons, a name QuizB and the other IllustrationB.

    On the behavior of mousedown attached to QuizB, you have the following: go to section X of the film "Quiz"

    On the behavior of mousedown attached to IllustrationB, you have the following: go to the section "L'Illustration" film X

    2. in the Quiz movie is a button named StartB.

    On the behavior of mousedown attached to StartB, you have the following: go to section X of the film 'Start'

    3. in the Illustration, the film is a button named StartB.

    On the behavior of mousedown attached to StartB, you have the following: go to section X of the film 'Start'

    In all three cases, setting X refers to the framework that you start on each film. The X can be a number, for example 1 or 5, or it may be a brand of the image, for example "start."

    All other things being equal (for example the film size and placement), you will find that these commands, will you spend your movies.

    Hope this helps,

    Rod Wolford

  • Combine the two columns of the table

    SELECT providerid, Sum OF appdev.usercounts
    WHERE the counttime BETWEEN SYSDATE - 30/1440 AND SYSDATE-15/1440 GROUP BY ORDER BY providerid providerid

    697 W
    U 813
    T 143
    S 2

    SELECT providerid, Sum OF appdev.usercounts
    WHERE the counttime BETWEEN - 30/1440 AND (SYSDATE-1) - 15/1440 (SYSDATE-1) GROUP BY ORDER BY providerid providerid;

    450 W
    U 571
    T 80
    S 2

    I want output like

    W 697 450
    U 813 571
    143 80 T
    2 2 S
    Help, please

    Thank you
    Praveen

    'COUNT', which is the actual column name? It could become very confusing.

    Not tested for obvious reasons, but it should be close:

    SELECT providerid
         , sum(
             case when counttime between sysdate - 30/1440 and sysdate - 15/1440 then count end
           ) as cnt1
         , sum(
             case when counttime between (sysdate-1) - 30/1440 and (sysdate-1) - 15/1440 then count end
           ) as cnt2
    FROM appdev.usercounts
    WHERE ( counttime between sysdate - 30/1440 and sysdate - 15/1440 )
       OR ( counttime between (sysdate-1) - 30/1440 and (sysdate-1) - 15/1440 )
    GROUP BY providerid
    ORDER BY providerid
    ;
    
  • Combine the two columns?

    HI, the problem is this, I have two columns: start_date and end_date

    Invite a: start date (for example 08/08/2008)
    Invite two: End Date (for ouvertede 30/04/2009)

    so these are two different columns, do you know how get all the data between these two dates.
    If I use the "between the function" I can't get the dates between the same column,
    The start date
    The start date

    but I need the end date...

    I really appriciate to help

    Thank you

    Hello

    Something like:

    SELECT *
    FROM   
    WHERE  start_date BETWEEN TO_DATE('08/08/2008', 'mm/dd/yyyy') AND TO_DATE('04/30/2009', 'mm/dd/yyyy')
    OR     end_date BETWEEN TO_DATE('08/08/2008', 'mm/dd/yyyy') AND TO_DATE('04/30/2009', 'mm/dd/yyyy');
    

    Kind regards

Maybe you are looking for

  • Journe Air 1000 Windows software RSS

    Hello where can I find the Windows for RSS and other software?My email: [email protected] Thank you Welcomes the Olli

  • Load a Camileo Pro camcorder

    Hi guys,. I'm hoping there's someone there willing and able to help me with this problem. My son bought a Toshiba Camileo Pro a few week ago which is now (I hope!) performing their duty sterling filming in and around Camp Bastion in Afgan. It also ha

  • How can I Debrick/Unbrick a Nighthawk X4S D7800

    Hello I was just wondering how I would go on debriking/unbrick my router (Nighthawk X4S D7800), in which case I have to. This happened until needed for Openwrt firmware. As well as not having the best of luck with the software in genral. Thanks in ad

  • Lenovo - other hardware - Lenovo PM Device (1010ko)

    Hello My product: Lenovo X 1 carbon (A 20, 7) 8.1 Windows 64 bit Microsoft offers me this update: Lenovo - other hardware - Lenovo PM Device (1010ko) What is this update and should it be installed? Thank you

  • Laptop does not recognize printer

    My Inspiron 9300 no longer recognizes my V305 printer.  Windows XP Professional.  Ive downloaded a new printer driver, connected to the printer via the USB cable and wireless, turned the two pieces of material market, generally followed the guides to