ResourceGantt Chart - showing the task column in datagrid or tooltip, help?

Hi all,
I managed to create a resource gantt chart, but now I would like to display the task in both datagrid, i.e. the left panel with columns and in the tooltip. How can I force the view of this task name or project? At the moment, only the resource name, start date, end date, % of completion show up. Any help please?
thanks
Edited by: mzeid on Mar 20, 2012 1:31 PM

Luca,
I think this is what you want:
The expressions are as follows:
Scores Table
Medi Column: =AVERAGE(B2:G2)
Passing Column: =IF(H≥6, H, "")
Failing Column:  =IF(H≤6, H, "")
Pie Chart Data Table:
Pass Column: =COUNTIF(Scores::H, ">=6")
Fail Column: =COUNTIF(Scores::H, "<6")
The Bar Chart is a 2D Stacked Bar Chart
Hope this is what you were looking for. Glad to explain further if necessary.
Jerry

Similar Messages

  • Examples of chart in the report column like monitor activity page

    Hello,
    Can anybody help me how to create a report having chart as one of the column in the report like Administration->Monitory Activity pages.
    I have a report having columns like date, salesman, collection%.
    The collection% must be displayed as bar chart showing % in the report column itself.
    I searched a lot and end up with no examples found for this kind of example.
    Any help will be appreciated.
    Thanks,

    First of all, it appears that there is no "HTML EXPRESSION" or an area to assign a CSS class to a column for interactive reports. I've even tried to use "COMPUTE" on an interactive report to introduce the <DIV> tabs and style, but that doesn't seem to work either. So If you're using an interactive report, it looks like you're out of luck.
    But if you use a standard report, here is a quick example using the standard Demo tables on an interactive report. I'll do my best to describe what I'm doing step by step.
    The query I'm using is a simple list of employees that shows the following columns:
    <ul>
    <li> EMPNO
    <li> ENAME
    <li> JOB
    <li> SAL
    <li> COMM
    <li> COMM / (SAL + COMM) *100 (What percent of total Salary is the employees Commission)
    </ul>
    So here is the SQL statement I'm going to use:
    select empno, ename, job, sal, comm, round(nvl((comm / (sal + comm) *100),0)) Pct_Comm
    from empNow, Create an standard (SQL) report on the page of your choice by selecting the CREATE button at the top of the page editor. Select "REGION ON THIS PAGE" => "REPORT" => "SQL REPORT"
    Enter a the TITLE and TEMPLATE of your choice, then click the NEXT button.
    Copy and paste the select statement above into the page region for the select statement, and press the CREATE REGION button.
    Go ahead and run the report and you will see a whole number for the COMM_PCT.
    Now to turn this into a graph within the column perform the following steps.
    <ol>
    <li>Edit the page and then edit the report by clicking on the "Report" link on the page definition. This will bring up the Report Attributes Page.
    <li>Edit the PCT_COMM column by clicking on the EDIT icon at the beginning of the row.
    <li>Cut and paste the html from my above post into the "HTML EXPRESSION" field.
    <li>Edit the HTML you just pasted to remove any unnecessary spaces in the tags that might cause it to render incorrectly.
    <li>In the HTML EXPRESSION string, replace the #COLLECTION_PCT# string with #PCT_COMM#. (This is a substitution variable that represents the value of that column. We're using that to set the WIDTH attribute of the bar).
    <li>Apply your changes and re-run the report.
    </ol>
    et. Voi la! You have a graph in your report.
    Hope that was clear enough.
    Doug

  • Firefox has spontaneously decided not to show the task bar at the bottom of the screen, and some menu bars have been messed up. How can I fix this?

    My Firefox has spontaneously (apparently) decided not to show the task bar at the bottom of the screen (the margin is there, but it is blank), and some menu bars have been messed up. Perhaps the most annoying aspect of these changes is the fact that I have to use alt-tab to move from a Firefox session to another session.
    I can find no way to fix these problems. Can you help? Am I going to have to uninstall and re-install Firefox in order to get back to the default settings? If so, is there any way to preserve my bookmarks?

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).<br />
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.<br />
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.
    *https://support.mozilla.org/kb/how-to-use-full-screen
    See also:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    *https://support.mozilla.org/kb/Toolbar+keeps+resetting

  • Producing a chart showing the lowest of 4 hourly values as one point

    Okay, new to this forum.
    I'm trying to produce a chart in APEX that shows the lowest value of every 4 hours to produce as one point in my chart for a monthly chart.
    I've created a schedule to get flashback data every hour from a database.
    Then this bit of SQL for a weekly chart showing the data from each hour:
    select null link,
    to_char(todays_date, 'DD-MON-YYYY HH24') as label,
    (OLDEST_FLASHBACK_TIME * 24) AS ####
    from flashback_history
    where DATABASE_NAME = '####'
    i want to get the lowest value from every 4 hours and show it in the graph for a month.
    Sorry if this doesnt make sense!
    Thanks in advance

    Using the above SQL worked okay for one series, but if i add another series to the chart, it doesnt display the two series on the chart together, it displays them seperately as they have different values.
    The chart -
    http://img.photobucket.com/albums/v478/CrewCab88/monthgraph.jpg
    These are some of the results the query for each series -
    NULL - 'DD-MON-YYYY HH24' - Value
    Series1 -
    -  13-JUL-2010 18 20.1869444444444444444444444444444444444
    -  13-JUL-2010 20 20.1833333333333333333333333333333333333
    -  14-JUL-2010 02 18.1713888888888888888888888888888888889
    -  14-JUL-2010 06 16.6633333333333333333333333333333333333
    -  14-JUL-2010 10 16.6566666666666666666666666666666666667
    -  14-JUL-2010 14 16.1502777777777777777777777777777777778 Series 2 -
    -  13-JUL-2010 15 20.6925
    -  13-JUL-2010 18 20.1880555555555555555555555555555555556
    -  13-JUL-2010 22 20.6816666666666666666666666666666666667
    -  14-JUL-2010 03 18.6713888888888888888888888888888888889
    -  14-JUL-2010 07 16.6622222222222222222222222222222222222
    -  14-JUL-2010 11 16.6558333333333333333333333333333333333 My question is, is there a way of editing the SQL to get the series on the graph to flow together?
    Thanks in advance

  • My iTunes is not showing the left column

    My iTunes is not showing the left column, it will NOT show the link to the music store or my playlists, and it is driving me crazy! PLEASE HELP ME!!

    How to restore your Preferences Dialog Boxes and/or your Source Pane:
    Scott P.: My Source List is missing (or, resetting the prefs)

  • HT4623 My ios update keeps getting stuck on the Restoring iPhone software stage. I uninstalled iTunes and reinstalled it again, but still nothing. Now I can't even use my phone as it shows the plug into iTunes screen. Please help!!!! Thanks,

    My ios update keeps getting stuck on the Restoring iPhone software stage. I uninstalled iTunes and reinstalled it again, but still nothing. Now I can't even use my phone as it shows the plug into iTunes screen. Please help!!!! Thanks,

    A Restore first downloads a new copy of iOS to your computer. On a slow Internet connection this can take a long time. How fast is your connection? How long would you expect it to take to download 900 MB?
    That's assuming nothing is interfering with the download. Some firewalls and antivirus programs will block the download or slow it down. So you should temporarily disable your security software. Security software can also block the update after the iOS download is complete.

  • Its just on the screen that shows the connect to itunes thing, someone pleaseee help ?

    Okay my ipod needs to be restored, but I have a passcode on it, and it wont let me do anything because i have a passcode.its just on the screen that shows the connect to itunes thing, someone please help? i would greatly appreciate it (:

    Connect in recovery mode and restore.
    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone and iPod touch software.
    If the issue continues after updating and restoring your device, refer to this document
    iPhone and iPod touch: Wrong passcode results in red disabled screen

  • Search Result doesn't show the task attachement :- Room Content Search

    Hi Experts,
      I am facing a problem with the Room content search. I was able to create a task(In a Room)and was able to attach a document as a supporting document for that task. The Problem am facing is like When I do a Room content search, the attachment (Task attachment) was not showing in the result set. All other stuffs like discussion groups, Discussions, News etc are getting displayed.
    I think the document which are being uploaded at the task screen are getting stored at root--> workflow folder. hence my search is getting failed. The room search is doing search at root --> room_extensions/.....
    When I do a room search I need the document uploaded at the task level also to be displayed...Anybody please help me....
    Regards
    Krishnan

    Hi,
    I thought by creating an Index with two datrasource will resolve the problem, but unfortunately teh Room search is not displaying the documents in the workflow folder...Would appreciate any inputs on this...
    Regards
    Krishnan

  • Workflow title is showing the task name

    Dear all,
    I am new to workflow and would like to ask your help about this issue I am experiencing.
    My workflow is a copy of MMIV_Appr. One of the tasks is TS99900067. The title is defined as "Invoice Release & &" where the first ampersand represents the document number and the second is the fiscal year. However, when the workflow approver receives the email in his SAP inbox, the title becomes "Invoice Parking: Approve Release", which is the name of the task. How can I make it display as the correct title "Invoice Release & &"?
    This issue is happening after we introduced some changes in the PPOME org structure.  I have refreshed the workflow buffers via SWU_OBUF and PPWFBUF.  I will to have the user refresh the org structure from the SAP inbox.  SBWP ->  Settings -> Workflow Settings -> Refresh Organizational Structure.  I am not sure yet if the steps would help resolve the error.
    If you have some inputs, I would greatly appreciate them.  Thank you for your help.
    Hoops

    Thanks to everyone who responded to my query.  I awarded you with points for helping me.
    It seems the workflow item text encountered a few hiccups after the PPOME org structure was changed.  After refreshing the workflow buffers and the org structure from the SBWP inbox of the user herself, the workflow item text went back to normal.  The effect is not retroactive, though.  So, for items impacted by the PPOME change, they remain as-is but for subsequent items after the refresh, they now reflect the correct text "Invoice Release (document number) (fiscal year)".
    Steps done:
    1. Refresh workflow buffers via SWU_OBUF and PPWFBUF.
    2. Refresh the org structure from the SAP inbox.  SBWP -> Settings -> Workflow Settings -> Refresh Organizational Structure.
    Thanks guys!
    Hoops

  • DSC Labs colour charts and the vectorscope of Premiere Pro CC - please help

    Let me immediately say that I am a retired engineer who has been a photographer since 1946 and videographer since the late 1990's - but I'm messing around in unfamiliar territory so may well say/ask some silly things...
    I have a new DSC Labs "Camette v9.1" test chart and will soon take delivery of a new Atomos Samurai Blade recorder (I have a Ninja2 - and love it apart from the awful display).  The Blade will give me vectorscope, RGB Parade etc. functionality that I can use on the camera output before recording.  I have multiple cameras, which I would like to calibrate.
    The Camette test chart requires that the gain of the vectorscope be set to 2x for the patch colours to be placed in their respective "boxes" during calibration.  I can definitely confirm that PP's vectorscope shows the colours to be only around 50% of the way from the centre to their respective boxes.
    Here are my questions:
    1.  Is there a way to set the gain of PP's vectorscope to anything other than 1x or 0.75x?  I really need 2x
    2.  Do all the DSC charts require a 2x gain, or is this specific to the Camette?  The Camette is about $160 whereas the bigger charts can exceed $1000 each.  As you might expect, the colours don't look at all saturated!!!
    3.  Does anybody know if the Samurai Blade vectorscope function can be set for a gain of 2x?  I am still awaiting a response from Atomos.
    With thanks in advance,
    Pete

    Let me immediately say that I am a retired engineer who has been a photographer since 1946 and videographer since the late 1990's - but I'm messing around in unfamiliar territory so may well say/ask some silly things...
    I have a new DSC Labs "Camette v9.1" test chart and will soon take delivery of a new Atomos Samurai Blade recorder (I have a Ninja2 - and love it apart from the awful display).  The Blade will give me vectorscope, RGB Parade etc. functionality that I can use on the camera output before recording.  I have multiple cameras, which I would like to calibrate.
    The Camette test chart requires that the gain of the vectorscope be set to 2x for the patch colours to be placed in their respective "boxes" during calibration.  I can definitely confirm that PP's vectorscope shows the colours to be only around 50% of the way from the centre to their respective boxes.
    Here are my questions:
    1.  Is there a way to set the gain of PP's vectorscope to anything other than 1x or 0.75x?  I really need 2x
    2.  Do all the DSC charts require a 2x gain, or is this specific to the Camette?  The Camette is about $160 whereas the bigger charts can exceed $1000 each.  As you might expect, the colours don't look at all saturated!!!
    3.  Does anybody know if the Samurai Blade vectorscope function can be set for a gain of 2x?  I am still awaiting a response from Atomos.
    With thanks in advance,
    Pete

  • Issues while joining two tables as the joining column has duplicate values - Please help!

    Hi,
    I have a table A -which has few columns including a Amount column - I am joining this table A to Table B. The joining column in B has duplicates.  So, the number of records are getting more after the joining. As per the requirment when I create a table
    after joining the tables and count the salary clumn, there is a difference in the counting. How can I solve this? Can you please help me?
    Here is the DDL and sample values
    create table #student (sid int, name varchar(10),salary int)
    create table [#address] (sid int, city varchar(10),grade char(1),lineneumber int)
    insert into #student values (1,'sachin',8000)
    insert into #student values (2,'Dhoni',2000)
    insert into #student values (3,'Ganguly',7000)
    insert into #student values (4,'Kohli',1000)
    insert into [#address] values(1,'mumbai','A',1)
    insert into [#address] values(1,'mumbai','B',2)
    insert into [#address] values(1,'mumbai','C',3)
    insert into [#address] values(1,'mumbai','D',4)
    insert into [#address] values(2,'JARKHAND','D',3)
    insert into [#address] values(2,'JARKHAND','D',4)
    SELECT S.SID,NAME,salary,CITY ,grade,linenumber
    into #FINAL
    FROM #STUDENT S
    LEFT JOIN #ADDRESS A
    ON S.SID=A.SID
    SELECT SUM(salary) FROM #FINAL
    --44000
    Final result should be 18000 , but it is coming as 44000. can you please help me to get the correct result - what do i do in the joining?
    In my real project, i have 5 tables joining, each table have more than 30 columns and few joining tables joining column have duplicates. I have simplified the issue so that i can ask the question clearly. So,while answering, please consider that also in mind.
    thanks in advance for your help!

    SELECT S.SID,NAME,salary,CITY 
    into #FINAL
    FROM #STUDENT S
    LEFT JOIN (SELECT DISTINCT sid,city
    FROM #Address) A
    ON S.SID=A.SIDthis will do a join on student table and city table with unique sid and city name so adddress selection will be sid city1 mumbai2 jarkand

  • I have updated my Apple ID, but iCloud under System Preferences on my iMac still shows the old Apple ID. How do I update it to show the new ID name? Can anyone help?

    I've updated my Apple ID, but iCloud under System Preferences on my iMac still shows my old Apple ID. How do I update it to show the new Apple ID?

    Do you mean you changed your existing apple id to a new email address, still associated to your existing apple id?
    If that's the case, just click the sign out button in the icloud preferences, and sign in with the new email address.
    If you're actually created an entirely new apple id with your new email address, you'll have to do some exporting/importing.

  • HT4009 I have recently changed my email address, now am having problems with signing into apps...as it still shows the old email address.  I need help ...anyone??

    After recently changing my email address on my iphone 4, am now having problems signing into the apps using my apple id....I have the apps still showing the old email address...and the password has not changed....can anyone tell me how to fix this?  Thank you in advance...

    You've updated your iTunes account to have your new email address on it - you might need to log out of your account by tapping on it at the bottom of the Featured tab in the App Store app and then log back in with the updated version of your account so as to 'refresh' the account on it.

  • My photo album does not show the pictures I have taken! Any help?

    My photo album does not show the pictures I have taken, they show up on my iMac through iCloud but not on my phone. Also my videos do not show up that I take.

    Did not work. I've selected iMessage to ON and left it. After a few hours I recieved a message "activation unsuccessful. Turn on iMessage to try again". This has been going on for the past 3 days.

  • MORNING HAVING A PROBLEM WITH MY Z10 WHEN I SWITCH ON IT SHOWS THE LOADING LOGO AND NEVER COMPLETES .YOUR HELP WOULD BE APPRECIATED THANKS

    MORNING HAVING A PROBLEM WITH MY Z10 WHEN SWITCH ON IT SHOWS THE LOADING LOGO AND NEVER COMPLETES THE LOADING PROCESS.YOUR HELP WOULD BE APPRECIATED

    Checkout this thread: http://supportforums.blackberry.com/t5/BlackBerry-Z10/Z10-stuck-on-loading-logo-on-starting-up/td-p/2517909

Maybe you are looking for

  • Itunes cannot open -50 error

    I have looked all over this site for the -50 error and only found two answers niether which worked for me. I flat out can't open itunes, it simply gives me the itunes cannot open due to an unknown error (-50). It was working fine yesterday. What do I

  • Extended Rights not working in Reader X - resetting form

    Hi, To make the problem clear i will put it in steps 1. I have a form created in LiveCycle Designer. 2. I save it in two ways: as a static and dynamic file pdf. (to test both options) 3. I reopen it in Adobe Acrobat 4. Save it as a copy with extended

  • Problem with the actionPerformed

    hello all! I've a problem in my application with the jbuttons. I'm developing a 2 player card game with socket programming. When 1 player is playing, the other player's buttons are disabled. But if the other player clicks the buttons when they are di

  • How do I remove sound from videos in PS CS6 extended?

    I have a series of movies which I intended to individually import into PhotoShop CS6 Extended, add end credits, and then export WITHOUT SOUND. For the life of me, I can't see any way to remove the audio from the movies! I'm sure this feature was easi

  • Time capsule does not appear in the finder.

    My time capsule appears in airport utility. It is ready to go. I have it on ethernet because airport isn't a very powerful wireless router. The time capsule does not appear in the finder. It does not appear in the disc utility. It does not appear in