for the combined line and conditional formatting bar graph

Hi all

I have a combined line and bar chart, bars showing the values of the CDA in different exercise, as well as the lines that appear from year to month values in the different financial year, how set up the conditional formatting to do the same exercise, the same color - isn't serious CDA (BAR) or the year (line)?

Thank you
Ling

Check the image at the Point # 5 of the link
http://obieetraining11.blogspot.com/2012/08/OBIEE-11g-adding-graph-to-analysis.html

Who has the possibility of conditional formatting.

check if help

Tags: Business Intelligence

Similar Questions

  • SQL to bring the last line and the just previous row in the table

    Hi all

    I have a table of orders, where a serial number can be booked with different number several times over several days.

    Requirement is to bring the last order (based on the date of creation) number associated with this serial number and just previous order number and data in the format below.

    Last order numberSerial numberReservation locationNo bookingPrevious order numberSerial numberReservation locationNo booking

    It is essentially to generate the report that a reserved serial number with how many times with different orders and report must contain details of order two in a line.

    Kind regards

    You asked for the last line, and you have not provided data of the example or the expected results, so you get what you asked for.

    You may be looking for data to be partitioned on another value, for example

    SQL > ed
    A written file afiedt.buf

    1. Select deptno, ename, empno, mgr, hiredate, prev_empno, prev_ename, prev_mgr, prev_hiredate
    2 starting at)
    3. Select deptno, ename, empno, mgr, hiredate
    lag (empno) 4, over (partition by deptno arrested by hiredate) as prev_empno
    lag (ename) 5, over (partition by deptno arrested by hiredate) as prev_ename
    lag (mgr) 6, over (partition by deptno arrested by hiredate) as prev_mgr
    lag (hiredate) 7, over (partition by deptno arrested by hiredate) as prev_hiredate
    8, case when hiredate = max (hiredate) on (deptno partition) then 1 0 otherwise fine as max_hiredate
    9 of PEM
    10       )
    11 * where max_hiredate = 1
    12.

    DEPTNO EMPNO, ENAME MGR HIREDATE PREV_EMPNO PREV_ENAME PREV_MGR PREV_HIRED
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
    10 7934 MILLER 23/01/1982 7782, 7839 KING 17/11/1981
    20 7876 ADAMS 7788 23/05/1987 7788 SCOTT 7566 04/19/1987
    30 7900 JAMES 7698 03/12/1981 7654 MARTIN 7698 28/09/1981

    who is the last disc, by Department, as well as the previous within the same Department.

  • What is the life line and why am I charged $26.99 for something or other on my purchased iCloud account?

    What is the life line and why am I charged $26.99 for something or other on my purchased iCloud account?

    There is a life saver app in the App store (p 79) and several vital services on Google.   If you are unsure about a receipt, there's an invitation on the bottom to "report a problem".   Report your problem.

  • For loops with the cursor line and indexing

    Hi all

    I have a question about the loops with the cursor, line and indexing.

    How can I scan via a cursor with an iterator?

    I would use an iterator as

    Whole LoopIndex;
    Whole LoopIndex2;

    for LoopIndex at the beginning of the cursor at the end of the cursor
    loop
    line =: cursor [LoopIndex];
    for LoopIndex2 of LoopIndex at the end of the cursor
    etc...
    end loop;

    I need to use an iterator because I need to use a nested for loop.



    OR


    How can I solve the following problem?

    Class name % ofClass average test Score
    1 Niobe 7 8 8.4
    1 alena 4 7 7.5
    1 9 7 8.9 Estia
    1 Lilly 10 8 9.8
    1 Sandra 6 8 8.3
    1 Melanie 8 8 8.1
    Nadia 2 8 3 4.4
    Sayuki 2 9 8 8.4
    Diasy 2 7 8 8.0
    Flower 2 7 8 6.5
    Diana 2 6 8 7.3
    3 Flora 7 8 5.8
    Sukiya 3 4 8 8.4
    Samantha 3 10 8 7.7
    Roxanne 3 7 8 6.9
    Eline 3 8 8 7.4

    I need to
    -By class, I need to recalculate each average people
    -By class, I need to calculate the % of class score (sum averages / people in the class)

    So it can be done in a nested for loop?
    Or do I just step by step?

    Well, based on this information it would be something like...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select 1 as Class, 'Niobe' as Nm, 7 as Score, 8 as Tests, 8.4 as Average from dual union all
      2             select 1, 'Alena', 4, 7, 7.5 from dual union all
      3             select 1, 'Estia', 9, 7, 8.9 from dual union all
      4             select 1, 'Lilly', 10, 8, 9.8 from dual union all
      5             select 1, 'Sandra', 6, 8, 8.3 from dual union all
      6             select 1, 'Melanie', 8, 8, 8.1 from dual union all
      7             select 2, 'Nadia', 3, 8, 4.4 from dual union all
      8             select 2, 'Sayuki', 9, 8, 8.4 from dual union all
      9             select 2, 'Diasy', 7, 8, 8.0 from dual union all
     10             select 2, 'Blossom', 7, 8, 6.5 from dual union all
     11             select 2, 'Diana', 6, 8, 7.3 from dual union all
     12             select 3, 'Flora', 7, 8, 5.8 from dual union all
     13             select 3, 'Sukiya', 4, 8, 8.4 from dual union all
     14             select 3, 'Samantha', 10, 8, 7.7 from dual union all
     15             select 3, 'Roxanne', 7, 8, 6.9 from dual union all
     16             select 3, 'Eline', 8, 8, 7.4 from dual)
     17  --
     18  -- END OF TEST DATA
     19  --
     20  select class, nm as "NAME", score, tests, average
     21        ,round(((average*tests)+score)/(tests+1),1) as avg_person
     22        ,round((average / sum(average) over (partition by class))*100,1) as class_average
     23  from t
     24* order by class, nm
    SQL> /
    
         CLASS NAME          SCORE      TESTS    AVERAGE AVG_PERSON CLASS_AVERAGE
    ---------- -------- ---------- ---------- ---------- ---------- -------------
             1 Alena             4          7        7.5        7.1          14.7
             1 Estia             9          7        8.9        8.9          17.5
             1 Lilly            10          8        9.8        9.8          19.2
             1 Melanie           8          8        8.1        8.1          15.9
             1 Niobe             7          8        8.4        8.2          16.5
             1 Sandra            6          8        8.3          8          16.3
             2 Blossom           7          8        6.5        6.6          18.8
             2 Diana             6          8        7.3        7.2          21.1
             2 Diasy             7          8          8        7.9          23.1
             2 Nadia             3          8        4.4        4.2          12.7
             2 Sayuki            9          8        8.4        8.5          24.3
             3 Eline             8          8        7.4        7.5          20.4
             3 Flora             7          8        5.8        5.9            16
             3 Roxanne           7          8        6.9        6.9          19.1
             3 Samantha         10          8        7.7          8          21.3
             3 Sukiya            4          8        8.4        7.9          23.2
    
    16 rows selected.
    
  • Table names (for quotes, the quote lines and price breaks)

    Hi Experts,

    What are the names of tables for the quote, the quote lines and quotes price breaks.

    Thank you

    MPH

    Quotes and POs share the same tables.
    The type_lookup_code in po_headers_all identifies the type of the document.

    Quotations > po_headers_all (or you can use PO_HEADERS_RFQQT_V)
    lines-online po_lines_all (or you can use PO_LINES_RFQQT_V)
    price breaks-online po_line_locations_all (or you can use PO_LINE_LOCATIONS_V)

    Hope that answers your question,
    Sandeep Gandhi

  • How to find the words that spans end of line to the next line in pdf format?

    I use Adobe Acrobat Pro X version for our development and form maintenance. I am writing a command Acrobat JAVA script which reads through all words and run the spell check and reports the wrong words spelled in an excel sheet. Because I run this script in batch for more than 1000 PDFs - I get a lot of words together. When I looked in the PDF files all these words are good looking because it makes its appearance at the end of the right margin, and the next word is in the next line. Since there is no space between them, it was mined in one word. Where the failure.

    I have used wordf = this.getPageNthWordQuads (i, j) to get the word start and end coordinates. When I look at my values create a rectangle, and extending through the lines. I got the coordinates for the ordinary Word and which cover the two lines acoross. the coordinates are same.

    I think I'm screwed I 8000 words and not the slightest idea how to get rid of them actual misspelled words.

    Help, please. Let me know if any /method class so I give the speech will give me the end of line or I have to go to the next layer to find this split.

    the addnot is somehow marking the words using this contact information - please hellp understand me how this works. Thank you.

    for all pages

    for (var i = 0; i < this.numPages; i ++)

    {

    For all words

    PG += 1;

    numWords = this.getPageNumWords (i);

    for (j = 0; j < numWords; j ++)

    {

    get spell checking

    ckWord = spell.checkWord (this.getPageNthWord (i, j))

    If (ckWord! = null)

    {

    Jn = 0

    ml = 0

    If the misspelled word found.

    wordf = this.getPageNthWordQuads (i, j)

    swordf = wordf.toString)

    var St = swordf.split(",")

    var diffx0 = parseInt(st[0])-8

    var diffx1 = parseInt(st[1])-8

    var diffx2 = parseInt(st[2])-8

    var diffx3 = parseInt(st[3])-8

    var diffx4 = parseInt(st[4])-8

    var diffx5 = parseInt(st[5])-8

    var diffx6 = parseInt(st[6])-8

    var diffx7 = parseInt(st[7])-8

    If (bparole is csword)

    {

    Jn = 1

    }

    If (m [1]! = m [3])

    {

    ml = 1

    }

    dataLine += "\r\n writing".

    }

    on the other

    {

    ml = 2

    }

    dataLine += "\r\n"+this.documentFileName. "

    + "\t" + this.getPageNthWord (i, j)

    + "\t" + pg

    + "\t" + j

    + "\t" + ml

    + "\t" + jn

    '\t st [0]' + diffx0 + '\t m [1]' + diffx1 + '\t st [2]' + diffx2 + '\t [3] st' + diffx3

    '\t st [4]' + diffx4 + '\t st [5]' + diffx5 + '\t [6] st' + diffx6 + '\t st [7]' + diffx7

    CK = 1

    }

    }

    }

    If Acrobat is reading each part of the word and the distinct words, you have a problem.

    The way I approached it in some of my tools was to check if a word ends

    with a hyphen and if so, to check if it is the last one on the line. If the two

    conditions are met, combined with the word on the next line. It comes

    do not fool proof, of course, as there are documents with columns are another

    structural elements that prevent this from working. Better than nothing,

    Although...

    However, it is also possible that Acrobat sees both as parts of

    the same word. In this case, getPageNthWordQuads() returns several

    tables of quads. As you know, this method returns an array of arrays quad.

    He is usually alone, but in principle it could be more... Something

    to check before giving up.

  • I fell for the "eventvwr" scam and gave the appellant to control remotely from my computer.

    I fell for the "eventvwr" scam and gave the appellant to control remotely from my computer.  When I insisted on getting a phone on their part number, I shut down the computer, waited a bit and restarted again.  Everything seems normal, but I'm worried.  I had to give them a "id" so that they could take control remotely.  I have to worry about remote access to my computer now?

    I fell for the "eventvwr" scam and gave the appellant to control remotely from my computer.  When I insisted on getting a phone on their part number, I shut down the computer, waited a bit and restarted again.  Everything seems normal, but I'm worried.  I had to give them a "id" so that they could take control remotely.  I have to worry about remote access to my computer now?

    Remove all device has been installed to allow remote access.

    You need to change passwords on accounts and examine your computer and all data within being compromised.

    Your line of safer driving is to reformat/reinstall your operating system.

    You can also check the following links for more information:

    http://www.Microsoft.com/security/online-privacy/avoid-phone-scams.aspx

    http://www.mypchealth.co.UK/GuideScam.php

    http://ask-Leo.com/i_got_a_call_from_microsoft_and_allowed_them_access_to_my_computer_what_do_i_do_now.html

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-security/i-fell-for-the-eventvwr-phone-scam/8e79cd60-0a09-4ED6-85b0-056230878815?page=1

    Good luck...

  • Sales order form, line status code is displayed as "WITHDRAWN". but the same code appears as "AWAITING_SHIPPING" for the same line in the database. can you please explain, where the value in frontend comes? It differs from the flow_status_code in oe_or

    Sales order form, line status code is displayed as "WITHDRAWN". but the same code appears as "AWAITING_SHIPPING" for the same line in the database.

    Where the value in the frontend is filling?

    It differs from the flow_status_code in oe_order_lines_all?

    Thanks for the correction.

    He slipped right out of my mind!

    Here is a detailed explanation of this case:

    Status of orders picked and picked partial

    Kind regards

    Bashar

  • Keyboard shortcuts for the video Composite and Audio Waveform

    I work in Premiere Pro CS6 on Mac OS 10.10.5. I am constantly switch between views video Composite and Audio Waveform in the Source monitor Panel. To do this, I have to use the mouse to click on the key icon, and then select one of the points just at the top of the context menu. My workflow would be so much faster if there was a keyboard shortcut.

    The official page of default keyboard shortcuts indicates no shortcut for these menu items. Mac OS system preferences > keyboard > shortcuts [shortcuts App] allows me to create shortcuts for application specific menu items, but not for context menus.

    Is there, however, a way that I can tell Premiere Pro CS6 to use a keyboard shortcut for the video Composite and Audio Waveform views?

    You can create your own... If you scroll the list link you to that, there is the Source section of monitor... which has options short keyboard available for your two wishes:

    Then, use Cmd / Alt + K to do your editing of the keyboard shorts... Scroll way down to find this section, then create a short. At the bottom, it will tell you if it comes into conflict with one another. Here I come to make Composite video, abbreviated as CC2015.2:

    By clicking on the line to the right of the effect you want to order makes these empty lines appear the "x" you will see in this view... click again and you can start typing your proposed short. If your entry on this line is already in use, will appear this very practical warning:

    So... do you some useful shorts!

    Neil

  • Export of the break lines in PDF format with interactive links

    In all my years of work with the ID and export to interactive PDF, I always thought that to jump lines (Type > insert special character > marker > next number number/Previous Page) would export as interactive link in a PDF document.

    But in doing research for an article, I was able to get the lines break to have interactivity in a PDF document (or a FXL).

    Is this something that is broken?

    Peter Spier has answered a question in 2009 https://forums.adobe.com/thread/431407?q=jump%20lines which indicate that the jump lines are hyperlinks. But he mentions looking window > Interactive. Which seems to indicate that you should take the jump lines and make them hyperlinks using the links Panel.

    I expect that the link hidden in electronic jump lines would be automatically exported as a link in a PDF document.

    I was wrong all these years?

    Hi Sandee,

    I feel looking at the old thread, it is that you do manually jumplines hyperlinks.

  • I have problems with the form widget. When I created my forms, I need to leave out the line, one email because my client does not want the message line and two because those who have tried to fill the online form cannot submit because that box "email".

    I have problems with the form widget. When I created my forms, I need to leave out the line, one email because my client does not want the message line and two because those who have tried to fill the online form cannot submit because the 'email' box keep rejecting their email address valid. And I just tried to remove the line in my form and it does not allow me to delete or to mark it as not necessary either.

    Currently, there is no way around the field email forms of the Muse. Another option is to have a look at Jotforms or another third-party provider of shape that Muse has widgets for.

  • Rule - same offset for the rule above and below does not not the same distance from the paragraph

    Hello

    I'm trying to create rules above and below a type using nets of paragraph. However, as you'll see in the attached screenshot using the same offset distance for the rule above and below does not cause the same distance. The rule above and below are the po deux.125. What could go wrong? Thank you.

    resume-paragraph rule.png

    Offsets are measured from the base line.

  • How can I add session variables for the subject field and the body of the e-mail Message?

    How can I add session variables for the subject field and the body of the e-mail Message? Tried several combinations, but do not seem to correct the syntax.

    This is the code I have. I need to change all the form variables in $msg in session variables. The $to part is supported. What remains are the $subject and $msg fields.

    $à = « à : ». $_SESSION ["toemail"];
    $subject = '$firstname $lastname, your registration details ';
    $from = "from: [email protected]"; "
    $msg = "Dear $title $firstname $lastname\r\n\nThank for the registration for the design of your dream Home.\r\nWe have received this following details details of you-\r\n\nClient-\r\n\nOccupation: $occupation \r\nPhone No.: $phone \r\nE-mail: $email\r\n\nPresent $ location: \r\n location\r\n\nPresent address: \r\n$ address\r\n\n\nFollowing are specified by you - design requirements \r\n\nBasic Features\r\n\nNo." floors: $floors\r\nNo. of bedrooms: bedrooms\r\nNo of $. of bathrooms: $bathrooms\r\nFloor region: $sqft\r\n\nFurther Suggestions: $ Plan\r\n\nSplit one further\r\n\n\nType floor: $splitfloor\r\n-remarks: $splitfloorremarks\r\nOpen floor: $openfloor\r\n-remarks: $openfloorremarks\r\n\n\nList of the rooms to be Included\r\n\nFoyer: $foyer\r\n-remarks: $foyerremarks\r\nDrawing: $drawing\r\n-remarks: $ alive drawingremarks\r\nFormal: $formalliving\r\n-comments : $ alive formallivingremarks\r\nFamily: $familyliving\r\n-remarks: $familylivingremarks\r\nHome Office: $homeoffice\r\n-remarks: $homeofficeremarks\r\nDining: $dining\r\n-remarks: $diningremarks\r\nMaster room: $master\r\n-remarks: $masterremarks\r\nMaster bathroom: $masterbath\r\n-remarks: $masterbathremarks\r\nMaster Dressing: $masterdress\r\n-remarks: $masterdressremarks\r\nBedroom: $bed\r\n-remarks: $bedremarks\r\nBathroom: $bath\r\n-remarks: $bathremarks\r\nDress: $dress\r\n-comments : $dressremarks\r\nStudy: $study\r\n-remarks: $studyremarks\r\nLibrary: $library\r\n-remarks: $libraryremarks\r\nPowder room: $powder\r\n-remarks: $powderremarks\r\nPrayer room: $prayer\r\n-remarks: $prayerremarks\r\nKitchen: $kitchen\r\n-remarks: $kitchenremarks\r\nPantry: $pantry\r\n-remarks: $pantryremarks\r\nUtility/area of work: $utility\r\n-remarks: $utilityremarks\r\nBalcony: $balcony\r\n-remarks: $balconyremarks\r\nStore: $store\r\n-remarks: $storeremarks\r\nLaundry : $laundry\r\n-remarks: $laundryremarks\r\nVeranda: $veranda\r\n-remarks: $verandaremarks\r\nCar porch: $carporch\r\n-remarks: $carporchremarks\r\nGarage: $garage\r\n-remarks: Theater garageremarks\r\nHome $: $theater\r\n-remarks: room of $theaterremarks\r\nMaid: $maid\r\n-remarks: $maidremarks\r\n\nOther general remarks: $general\r\n\nPlease note that the fields have been left blank in your form will be considered undecided details and used in discretion.\r\nIf of the architect , it better to add more later, design requirements please feel free to reply to this email with the details. « ;
    $fla = mail ($to, $subject, $msg, $from);

    Thanks in advance!

    askintrades wrote:

    How can I add session variables for the subject field and the body of the e-mail Message?

    What you want to do? Given the nature of your question, it seems that you probably don't know what a session variable is used. The PHP manual describes the purpose of sessions here: http://docs.php.net/manual/en/intro.session.php.

    I need to change all the form variables in $msg in session variables. The $to part is supported. What remains are the $subject and $msg fields.

    $à = « à : ». $_SESSION ["toemail"];

    Why do you need to change the form variables in session variables? They are already stored in session variables, or they come directly from the form?

    The $to part is not supported. When you pass $to to the mail() function, it should contain only an e-mail address, not a string that begins with "to:

  • IPod touch 6 generation is passed in brick mode and I restored with put it in dfu mode and restored factory via itunes and it says that it has completed the restoration. And it the ipod starts up and has the apple logo and a loading bar which is st

    IPod touch 6 generation happened in brick mode and I restored it by the he output in dfu mode and restore to the factory via itunes settings and it says it has finished restoring. And the ipod starts up and has the apple logo and a loading bar that do not move and it's stuck and it's been a week and I've done this process over and over

    Hi, Slkdogg1.

    Please visit Apple support communities.

    I understand that you cannot restore your iPod touch, and it looks like it is stuck on the Apple logo with progress bar.  I would like to start by going through the steps outlined in the article below.

    The Apple logo with the bar of progression after the update or restore iPhone, iPad or iPod touch

    If this does not resolve the problem, try to go through the troubleshooting steps in the articles below.

    Solve the iOS update and restore error in iTunes

    Resolve alerts related to USB in iTunes

    See you soon

  • comes to connect in iCloud for the first time and to synchronize my calendars etc I noticed it all disappeared.  How can I restore them?

    comes to connect in iCloud for the first time and to synchronize my calendars etc I noticed it all disappeared.  How can I restore them?

    They run iCloud.com? You have them on a computer?

Maybe you are looking for

  • Thunderbird uses 50% of CPU resource

    HelloIMac 24 ", OS10.8, Thunderbird 31.6. I have 3 boxes letters, 1 IMAP and POP 2Mailboxes are synchronize every 10 minutes.Nothing to Thunderbird asking locally, it uses 50% of CPU. This problem has appeared recently.Can you help me to fix it?

  • I don't want Google to appear as my page after download Firefox

    After the unloading of Firefox I have no toolbar and cannot have multiple pages in the upper part and the Bookmars and Favorites. I want to choose what I want rather than having the page of Google.Thank you very much.

  • STR-DH720

    When I am connected to the TV via an optical cable speakers turns off after about 1 1/2 hours, the speaker lights out but receiver lights up. When I turn it off and reboot they come back around the same time.

  • Accidentally ran the the pc recovery... out some files... need help to recover files... Thank you

    Accidentally ran the recovery of the pc... it has released a few files, such as photos, music, documents... ran the system restore, but it will not return after the time I did the recovery... of suggestions on how to recover these files? Thank you

  • driver pci HP 430

    Hello Can you give me a link for hp 430 pci driver, so that download this software... Help someone?