Can I draw a gantt chart using Numbers

wanting to construct a detailed gantt chart. Can it be done or is it better to buy/download another product? any recommendations?

See this popular thread. Maybe Jerry can help you out.
SG

Similar Messages

  • Creating Gantt charts using Business Graphics that can be downloaded

    The short version is I need the format for XML data to create a Gantt chart in a Business Graphics UI Element in order to be able to automatically email it.  The long version is...
    I currently have a Web Dynpro ABAP component that displays a Gantt chart using a Business Graphics UI Element based off data in various other UI elements in the view.
    This works fine and the graph displays nicely, but I cannot find a way to download that straight from the Business Graphics UI Element.  Having read around the forum there appears to be two options:
    - Code it up myself by calling methods on the IGS API directly
    - Bind the image data attribute on the element and get the data that way
    Unfortunatly, we are not currently running a recent enough version (702/720) to be able to do the latter and so, unless there is another way, I need to code up the API calls myself.
    So far I have got a business graphic in to an Adobe PDF form, loaded in my config data so it appears as a Gantt chart but I cannot figure out the format for the actual data that needs to be sent through in XML.  Does anyone have example XML data or code to generate it that can be sent in to the call:
    l_igs_ce->set_data( EXPORTING data_doc = p_ixml_doc ).
    I have used the example in GRAPHICS_IGS_CE_TEST and the page http://liualex.com/archives/185 to generate the image and load the config data in but this only explains the XML format of the chart data for bar graphs.
    Many thanks

    Found my answer,
    This download: http://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/e0a9ba90-0201-0010-d3a2-9cb376b5e181
    This is the SAP Chart Designer, it contains a PDF which explains the XML format used, you can use it to manually create your own XML streams.

  • Appointment creation in Gantt chart using BAPI

    Hi
    The transaction /ITS/WAP2  - maintains the appointment for a shipment number in Gantt chart.
    We need to do the same using a BAPI or IDOC in ECC.
    Anybody knows any BAPI or Idoc to do this in the background ?
    Regards
    Anandan

    Duplicate Posting.  Original is here: Sales order creation with bapi in webdynpro using table control

  • Implementing a GANTT CHART using PowerPivot

    Hi,
    is it possible to create a Gantt Chart in PowerPivot having tasks, persons, start date and end date for each task, effort, etc.?
    How?
    Many thanks

    Hi pscorca,
    Having read the article can you further clarify what you require, perhaps with an illustration?
    Regards,
    Michael
    Please remember to mark a post that answers your question as an answer...If a post doesn't answer your question but you've found it helpful, please remember to vote it as helpful :)
    Website: nimblelearn.com, Blog:
    nimblelearn.com/blog, Twitter:
    @nimblelearn

  • How can I draw a bar graph using netbeans?

    Hello, I am quite new to java and netbeans. I have got the hang of placing controls on the forms and getting them to function.. Now I want to be able to draw a graph. Is there a way I can do this is net beans? Or is there a control that lets me draw lines into it, like the PictureBox in Visual Basic?
    Thanks

    Speedster239 wrote:
    You need to get the grapics of the frame component in order to draw on it with java.awt.Graphics.
    Use something like:
    Graphics g = frame.getGraphics();
    This is wrong. See the comment about subclassing JPanel. Demo:
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class ExamplePanel extends JPanel implements ActionListener {
        private java.util.List<Shape> shapes = new ArrayList<Shape>();
        private Random rnd = new Random();
        public ExamplePanel() {
            new javax.swing.Timer(500, this).start();
        public void actionPerformed(ActionEvent evt) {
            int x = rnd.nextInt(getWidth());
            int y = rnd.nextInt(getHeight());
            shapes.add(new Rectangle(x-5, y-5, 10, 10));
            repaint();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D) g;
            for(Shape shape : shapes) {
                g2.draw(shape);
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    ExamplePanel comp = new ExamplePanel();
                    comp.setPreferredSize(new Dimension(400, 300));
                    JFrame f = new JFrame();
                    f.getContentPane().add(comp);
                    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    f.pack();
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • Can I draw within a cell in Numbers on iPad?

    Hello
    I haven't bought the app yet.  But an important feature for me for my work, would be the ability to draw (handwrite) within a cell in Numbers.
    Could anyone please tell me if this is possible?
    Many thanks.
    Gary

    No, you can't handwrite within a cell. All data entry is via keyboard interfaces.

  • How can I download a .xlsx file using Numbers?

    I'm new into Mac & I have no clue in how can I open a excel file .xlsx in a Mac...when I tried it showed the file was corrupeted. Anybody? Please.

    It may in fact be a corrupted file, in which case you are out of luck. You could try opening it with LibreOffice and if that works, save the file as .xls and try the saved file with Numbers.
    Jerry

  • How can I convert feet to meters using Numbers

    Does anyone have a formula for converting feet  to meters?

    Convert m to in, QUOTIENT will give you the number of feet, MOD will provide the number of inches left over, truncated to the last full inch.
    If you want the result rounded to the nearer full inch, round the result of the initial conversion. If you need fractions of inches (ludicrous if the original figure is to the nearest metre), that can be done as well.
    m in B2,
    formula in C2: =ROUND(B2*39.3700787,0)  (inches, rounded to nearer full inch)
    formula in D2: =QUOTIENT(ROUND(B2*39.3700787,0),12)&" Ft. "&MOD(ROUND(B2*39.3700787,0),12)&" In."
    Regards,
    Barry

  • How can I build a double scale chart using iPad Numbers? Is it possible??

    Hi everyone, I would really like to know how I can create a double scale chart using Numbers app for iPad.
    Should I have the following data, how can I put together in the same charts?
    Year: 1-2-3-4 etc (Axis X);
    AuM: data1, data2, data3, data4 etc (Axis Y1)
    Return on AuM: R1, R2, R3, R4 etc (Axis Y2)
    I work this kind of chart out with the Mac, but I cannot find the same function in iPad app.
    Thanks for the support,
    Davide

    Hi everyone, I would really like to know how I can create a double scale chart using Numbers app for iPad.
    Should I have the following data, how can I put together in the same charts?
    Year: 1-2-3-4 etc (Axis X);
    AuM: data1, data2, data3, data4 etc (Axis Y1)
    Return on AuM: R1, R2, R3, R4 etc (Axis Y2)
    I work this kind of chart out with the Mac, but I cannot find the same function in iPad app.
    Thanks for the support,
    Davide

  • The application "Numbers" can't be opened. I have used numbers many times before and cannot currently open the application.

    The application “Numbers” can’t be opened. i have used numbers many times before and cannot currently open the application. My Mac is a 10.9.4 Mac.
    thank you, Mary

    Hello maryfromkailua,
    Unresponsive apps can be frustrating. After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning app issues:
    OS X Mavericks: If an app freezes or quits unexpectedly
    There are several solutions to try.
    If the app is frozen, force quit the app. Press Option-Command (⌘)-Esc, select the app, then click Force Quit.When you force an app to quit, you may lose unsaved changes.
    If the app quit, reopen it by clicking Reopen in the dialog that appears.
    Restart your Mac.Methods for starting up your Mac
    Read the app’s documentation to check if it’s compatible with your version of OS X.
    Open another file in the app. There may be a problem with the original file.
    Check for updates to your software.Keep your Mac up to date
    Disconnect any peripheral devices you just connected (for example, a printer). They may not be compatible with your version of OS X.
    Uninstall any app plug-ins or enhancements from other manufacturers.If you recently updated the app or OS X, a plug-in or enhancement you installed may no longer be compatible.
    Use Apple Diagnostics or Apple Hardware Test. These tools can tell you if hardware you installed, such as additional memory, is incompatible, improperly installed, or defective.Use Apple Diagnostics or Apple Hardware Test
    Restart your Mac in safe mode.Start up in safe mode
    Use Disk Utility to repair your computer’s internal disk.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • How to download Project Gantt chart in to Excel?

    Dear Guru's,
              Can you please explain me How to download Project Gang chart in to Excel? Please explain me all the steps to download.
    Regards,
    Sai
    Edited by: Virendra Pal on Dec 8, 2009 10:02 AM

    hi,
    you mean Gantt chart.
    a gantt chart is basically a graphical representation of the activities/wbs element based on the dates/durations...
    it can be directly downloaded to ms project if you have open PS..
    however, if you are using excel, you can easily derive the gantt chart based on the start and finish dates (planned/basic/actual/forecast dates) of the objects...
    you can access CN41N then go to Evaluation > Export > Spreadsheet..
    with this you can derive the gantt chart based on the data..
    regards.
    Edited by: Virendra Pal on Dec 8, 2009 10:03 AM

  • Gantt Chart Manipulation

    Hello,
    I am trying to create a Gantt  chart using an Excel spreadsheet. I can get the data in fine and it looks great, except the data bars are extremely small. I have tried changing the scale and other formatting and I am having no luck. Is there a way to change the thickness of the risers?
    Thanks

    Hi,
    Could you please refer to the article below and create a calculated column for Today:
    http://blogs.msdn.com/b/cjohnson/archive/2006/03/16/552314.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • IGS GANTT CHART HOW TO ?

    In Sap IGS demo there only data set for  Categories and Series , how to build a gantt chart use TimeValue or  NumericValue for a Point element ?  I try to use cl_gui_chart_engine class to show a gantt chart in GUI, the X-axis of chart like 'YYMMDD'. Can someone help me?

    What IGS version are you using?
    Are you using the Chart Designer to create the Gantt chart?
    [SAP NetWeaver 7.0 EHP 1 --> Chart Designer |http://help.sap.com/saphelp_nw70ehp1/helpdata/en/86/243f403f0a9354e10000000a155106/frameset.htm]
    Correct the insertion of the Link
    Edited by: Oisin ONidh on Feb 14, 2011 10:13 PM

  • Bar Chart using Array Collection

    I have an array collection like this.
    How can i draw a bar chart between the month the sales.?
    acChartingData:ArrayCollection = new ArrayCollection(
    {Series: "Series 1", Period: "2002", Jan: "230.7", Feb:
    "214.2", Mar: "240.3", Apr: "223.8", May: "231.3", Jun: "203.7",
    Jul: "226.8", Aug: "225.3", Sep: "219.3", Oct: "246.9", Nov:
    "227.7", Dec: "181.2"},
    {Series: "Series 2", Period: "2003", Jan: "222.6", Feb:
    "213", Mar: "209.1", Apr: "225.3", May: "", Jun: "", Jul: "", Aug:
    "", Sep: "", Oct: "", Nov: "", Dec:""}
    ]);

    Never mind! I found the "secret": use multiple chartseries
    tags within a cfchart tag.

  • GANTT CHART ON FORMS VISUAL

    I use Forms [32 Bit] Version 10.1.2.0.2
    I can make character based Gantt Chart on a txt, but we need visual chart.
    Is there any way to do gantt chart on forms?

    All graphs available are part of the BI Graph demo bean that you can download from OTN:
    http://www.oracle.com/technology/sample_code/products/forms/index.html
    Francois

Maybe you are looking for

  • Different ways to referencing Session State variables

    Hi, According to APEX documentation there's 4 different ways to reference session state variables: http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32471/concept.htm#BEICHBBG In an inline PL/SQL statement, what's the difference when

  • Trouble with e-mail since switching to gmail accounts

    Moved from my cable internet service providers e-mail to gmail. Problems with my mac os x mail ever since. Must've been something I did along the way. Followed the instructions for "access a Gmail account in OS X Mail 2 Using POP". I'm starting to wo

  • Help with Ravenna tutorial site

    After installig i see error: Unable to retrieve search results. Unable to retrieve search results. Unable to create result set for query 'SELECT IdcColl1.dID, dDocName, dDocTitle, dDocType, dRevisionID, dSecurityGroup, dDocAuthor, dDocAccount, dRevLa

  • Alarm clock issue after OS upgrade to 5..0.0.973

    I upgraded to 5.0.0.973 and now I have issues with my alarm clock not displaying the time while charging at my bed side.  I have Verizon and tried using the latest upgrade from Sprint. 5.0.0.1030 but the alarm clock issue remains. Rolling back the up

  • How to make sure what material number format is the same in SRM and R/3?

    Hi all! I faced the following problem: "Product does not exist in plant or it has been flagged for deletion". This error message occurs during shopping cart creation or during transferring purchase requisition from R/3 to SRM. It seems like SRM carri