How do I create brick graph in Excel?

Marcie

Hi Marcie,
I suggest you post your question to the Microsoft Excel community forum:
http://answers.microsoft.com/en-us/office/forum/excel
Regards,
Brian

Similar Messages

  • How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    Hi Libby,
    Select all three columns of data. All three must be 'regular' columns, not Header columns, and the X values must be in the leftmost column.
    Click the Charts button and choose the Scatter chart.
    The resulting chart will initially show only the first and second columns of data, and the selection will have been reduced to show this.
    Click the gear icon at the top left of the selection and choose Share X Values.
    You should see a result similar to this:
    Notes:
    The values on my sample table contain a random element, so they have changed from thhe first image to the second.
    The chart is as created by Numbers, with two edits:
    Data points have been connected with curves, using the Chart nspector.
    The curves were selected and their stroke increased to 2pts, using the stroke formating button in the format bar.
    Regards,
    Barry

  • How do you create a graph in the blueprint of solution manager?

    Hi,
    Does anyone know how to create a graph in the blueprint of solution manager?

    Is a graphic, i´m gonna to summarize you in a chart what i´m doing ....i hope you understand and can help me....
    i sinchroniced Solution Manager with Aris for Netweaver and i want to see the graphics that
    were created in ARIS for netweaver in Solution Manager but can not be .
    I have been researching and not have to see if the Web service??
    Thanks!!!
    Edited by: Mariana Lavastida on Aug 14, 2008 2:33 AM

  • How can I creat or open an excel file in labview?

    I am using Labview 7.1 and report generation toolkit. I got the example code from this address :"Creating a report in Microsft excel using the labview report generation toolkit"
    But seems this example only can creat report when the excel file exist, otherwise it will get error code 7.
    How can I creat a new file if it doesn't exist and open the file if it exist? Can I creat a report without openning excel because I need to creat more than one report and check it after the test.
    Thanks

    Simply use the "Open/Create/Replace File.vi, and wire a constant "Create / Replace".
    Wire a path/filename and make sure the name ends with the extention .xls
    If you have multiple lines (likely), place aech line in an array and use the "Array to Spreadsheet String.vi" before sending it to "Write to file.vi". Don't forget to close the file.
    Hope this helps..
    JLV

  • I want create a graph in excel

    hi
        I have created a program using field-symbols and add excel download using OLE object everything finished now i want to download graph in the excel how can do that help me.now the program completed until excel download the data now i want to create graph usinf the data.
    regards,
    Siva

    Hi Siva,
    Use the foll code, just give 1 / 2 in Sheets parameter.
    *& Report  ZJOTHI_GRAPHICS_IN_EXCEL                                    *
    report  zjothi_graphics_in_excel  no standard page heading
    include ole2incl .
    data: gs_excel type ole2_object ,
    gs_wbooklist type ole2_object ,
    gs_application type ole2_object ,
    gs_wbook type ole2_object ,
    gs_activesheet type ole2_object ,
    gs_sheets type ole2_object ,
    gs_newsheet type ole2_object ,
    gs_cell1 type ole2_object ,
    gs_cell2 type ole2_object ,
    gs_cells type ole2_object ,
    gs_range type ole2_object ,
    gs_font type ole2_object ,
    gs_interior type ole2_object ,
    gs_columns type ole2_object ,
    gs_charts type ole2_object ,
    gs_chart type ole2_object ,
    gs_charttitle type ole2_object ,
    gs_charttitlechar type ole2_object ,
    gs_chartobjects type ole2_object .
    data gv_sheet_name(20) type c .
    data gv_outer_index like sy-index .
    data gv_intex(2) type c .
    data gv_line_cntr type i . "line counter
    data gv_linno type i . "line number
    data gv_colno type i . "column number
    data gv_value type i . "data
    parameters: p_sheets type i .
    start-of-selection .
    do p_sheets times .
    *--Forming sheet name
    gv_intex = sy-index .
    gv_outer_index = sy-index .
    concatenate 'Excel Sheet #' gv_intex into gv_sheet_name .
    *--For the first loop, Excel is initiated and one new sheet is added
    if sy-index = 1 .
    create object gs_excel 'EXCEL.APPLICATION' .
    set property of gs_excel 'Visible' = 1 .
    get property of gs_excel 'Workbooks' = gs_wbooklist .
    get property of gs_wbooklist 'Application' = gs_application .
    set property of gs_application 'SheetsInNewWorkbook' = 1 .
    call method of gs_wbooklist 'Add' = gs_wbook .
    get property of gs_application 'ActiveSheet' = gs_activesheet .
    set property of gs_activesheet 'Name' = gv_sheet_name .
    *--For the rest of loops, other sheets are added
    else .
    get property of gs_wbook 'Sheets' = gs_sheets .
    call method of gs_sheets 'Add' = gs_newsheet .
    set property of gs_newsheet 'Name' = gv_sheet_name .
    endif .
    gv_line_cntr = 1 . "line counter
    *--Title
    *--Selecting cell area to be merged.
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of gs_excel 'Cells' = gs_cell2
    exporting
    #1 = 1
    #2 = 4.
    call method of gs_excel 'Range' = gs_cells
    exporting
    #1 = gs_cell1
    #2 = gs_cell2.
    call method of gs_cells 'Select' .
    *--Merging
    call method of gs_cells 'Merge' .
    *--Setting title data
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = 1.
    set property of gs_cell1 'Value' = 'KISHAN' .
    *--Formatting the title
    get property of gs_cell1 'Font' = gs_font .
    set property of gs_font 'Underline' = 2 .
    set property of gs_font 'Bold' = 1 .
    set property of gs_cell1 'HorizontalAlignment' = -4108 .
    get property of gs_cell1 'Interior' = gs_interior .
    set property of gs_interior 'ColorIndex' = 15 .
    set property of gs_interior 'Pattern' = -4124 .
    set property of gs_interior 'PatternColorIndex' = -4105 .
    gv_line_cntr = gv_line_cntr + 1 .
    *--Writing some additional data for the title
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = 1.
    set property of gs_cell1 'Value' = 'Sheet No' .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = 5.
    set property of gs_cell1 'Value' = ':' .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = 6.
    set property of gs_cell1 'Value' = gv_intex .
    *--Formatting the area of additional data 1
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of gs_excel 'Cells' = gs_cell2
    exporting
    #1 = gv_line_cntr
    #2 = 5.
    call method of gs_excel 'Range' = gs_cells
    exporting
    #1 = gs_cell1
    #2 = gs_cell2.
    call method of gs_cells 'Select' .
    get property of gs_cells 'Font' = gs_font .
    set property of gs_font 'Bold' = 1 .
    *--Formatting the area of additional data 2
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = 1
    #2 = 5.
    call method of gs_excel 'Cells' = gs_cell2
    exporting
    #1 = gv_line_cntr
    #2 = 5.
    call method of gs_excel 'Range' = gs_cells
    exporting
    #1 = gs_cell1
    #2 = gs_cell2.
    call method of gs_cells 'Select' .
    get property of gs_cells 'Columns' = gs_columns .
    call method of gs_columns 'AutoFit' .
    *--Bordering title data area
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of gs_excel 'Cells' = gs_cell2
    exporting
    #1 = gv_line_cntr
    #2 = 6.
    call method of gs_excel 'Range' = gs_cells
    exporting
    #1 = gs_cell1
    #2 = gs_cell2.
    call method of gs_cells 'Select' .
    call method of gs_cells 'BorderAround'
    exporting
    #1 = 1 "continuous line
    #2 = 4. "thick
    *--Putting axis labels
    gv_colno = 2 .
    gv_line_cntr = gv_line_cntr + 5 .
    gv_linno = gv_line_cntr - 1 .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_linno
    #2 = 1.
    set property of gs_cell1 'Value' = 'X' .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = 1.
    set property of gs_cell1 'Value' = 'Y' .
    *--Generating some data
    do 3 times .
    gv_value = gv_outer_index * sy-index * 10 .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_linno
    #2 = gv_colno.
    set property of gs_cell1 'Value' = sy-index .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = gv_colno.
    set property of gs_cell1 'Value' = gv_value .
    gv_colno = gv_colno + 1 .
    enddo .
    *--Source data area
    gv_colno = gv_colno - 1 .
    call method of gs_excel 'Cells' = gs_cell1
    exporting #1 = gv_linno
    #2 = 1.
    call method of gs_excel 'Cells' = gs_cell2
    exporting #1 = gv_line_cntr
    #2 = gv_colno.
    call method of gs_excel 'Range' = gs_cells
    exporting #1 = gs_cell1
    #2 = gs_cell2.
    call method of gs_cells 'Select' .
    get property of gs_application 'Charts' = gs_charts .
    call method of gs_charts 'Add' = gs_chart .
    call method of gs_chart 'Activate' .
    set property of gs_chart 'ChartType' = '51' . "Vertical bar graph
    call method of gs_chart 'SetSourceData'
    exporting #1 = gs_cells
    #2 = 1.
    set property of gs_chart 'HasTitle' = 1 .
    get property of gs_chart 'ChartTitle' = gs_charttitle .
    get property of gs_charttitle 'Characters' = gs_charttitlechar .
    set property of gs_charttitlechar 'Text' = 'Sample Graph' .
    *--Locate the chart onto the current worksheet
    *--Activate current sheet
    call method of gs_excel 'WorkSheets' = gs_activesheet
    exporting #1 = gv_sheet_name.
    call method of gs_activesheet 'Activate' .
    call method of gs_chart 'Location'
    exporting #1 = 2
    #2 = gv_sheet_name.
    *--Reposition the chart on the worksheet (cut&paste)
    call method of gs_activesheet 'ChartObjects' = gs_chartobjects .
    call method of gs_chartobjects 'Select' .
    call method of gs_chartobjects 'Cut' .
    *--Select new area
    gv_line_cntr = gv_line_cntr + 2 .
    call method of gs_excel 'Cells' = gs_cell1
    exporting
    #1 = gv_line_cntr
    #2 = 1.
    call method of gs_excel 'Cells' = gs_cell2
    exporting
    #1 = gv_line_cntr
    #2 = 1.
    call method of gs_excel 'Range' = gs_cells
    exporting
    #1 = gs_cell1
    #2 = gs_cell2.
    call method of gs_cells 'Select' .
    call method of gs_activesheet 'Paste' .
    enddo.
    *--Deallocating memory
    free: gs_excel, gs_wbooklist, gs_application, gs_wbook,
    gs_activesheet,gs_sheets, gs_newsheet, gs_cell1,
    gs_cell2, gs_cells, gs_range, gs_font, gs_interior,
    gs_columns, gs_charts, gs_chart, gs_charttitle,
    gs_charttitlechar, gs_chartobjects .
    Rgds,
    Jothi.P
    **reward pts for helpful answers.

  • How do I create a graph with regression lines?

    Hi,
    I have a simple query that returns 2 columns of variable numeric data that I would like to create a chart from.  By using a numeric axis line chart I've been able to plot the individual points.  However, I now want to add a regression line based on those points.  The regression line could be a simple linear regression, a quadratic regression, or more complex 3 or 4 parameter regressions.  Is this possible?
    There could be a number of ways of creating the parameters (eg slope and intercept for a linear regression):
    a) Crystal Reports could calculate them whilst drawing the line
    b) I could create a formula that provides the parameters that CR could use to plot the line
    c) I could return the parameters from the database as part of the same or a separate query.
    Thanks

    Hi Colin,
    I just added a regression line to one of my charts yesterday   I did it by right clicking on the line (or in my case it was the bar) on the graph.  Then I picked Trendlines.  There are about 16 different formulas available.  I picked Linear Regression for mine and it gave me exactly what I needed. 
    Hope that helps,
    Cyndi

  • How do I create working hyperlinks in Excel files?

    Hi there, I'm new to this so please don't over estimate my knowledge! I am trying to create an online file repository for a client. It is basically a website holding excel files that link to each other. The hyperlinks work on the website version but don't work on the blackberry bold test handset I'm working with. I was creating them in excel as web page hyperlinks. Can anyone please shed some light on why these don't work? Thanks Ali

    Pages '09 ≠ Pages 5.01.
    You have the bugs and reduced features of Pages 5, the version you recently installed.
    Pages '09 should be in your Applications/iWork folder.
    Use that instead.
    Peter

  • How do I create a graph in numbers?

    So here is what I have created: http://i1135.photobucket.com/albums/m638/moore778899/Screenshot2011-01-06at21522 8.png
    All are drop down lists. You will see that it LOOKS correct in terms of Q1. But when I change one of the responses to male and select just those two cells, then create a pie chart, I only get a full blue circle again!
    What cells do I click?
    What am I doing wrong?

    lawero wrote:
    You will see at the top that the black bar has numerics in it. They go horizontally across the spreadsheet and I've set it up like this so I cross examine the data. I.e. see whether the treatment has been more successful in certain ways for women or men.
    I have not included those cells (black bar numerics) in the series as I presumed it was irrelevant. if I select two cells, both with a drop down list of male or female - and for example let's say one person was male and the other female - that it would give me a 50% split and a count of two...
    The numbers in the black bar (row 4) appear to be serial numbers identifying each case. If that's the case, your presumption is correct.
    If you want the pie graph to show the ratio of males to females, then you have to supply it the data to do that—a count of the Male cases and a count of the Female cases.
    Somewhere in your document, possibly on a second table, you need two cells, one containing the total number of Female cases, the other the total number of Male cases.
    The formula for Female will look like this:
    =COUNTIF(Table 1::$7:$7,"Female")
    If the cells are on the same table as the data, "Table 1::" is omitted.
    Regards,
    Barry

  • How do you create a graph in numbers with different x-values?

    For my chemistry class I have to create one scatter plot with three different sets of "x" and "y" values. I have done it before but it is not working. What is an easy way to accomplish this?

    All X and Y data has to be in regular cells, nothing in header rows or header columns. It should be organized as X1,Y1,X2,Y2, etc.
    Select all the data
    Choose to make a scatter chart
    At the bottom left of the Numbers window there is a little text box that probably says "Plot Columns as Series". Click on it and unselect "Share X Values"
    It is beyond me why Apple put that control in the bottom left corner in a place where you wouldn't think to look because it is far from the chart and far from the table and far from all the other controls you will be using to create and format the chart..

  • How do I create a table without Excel?

    I couldn't find the option insert table? Is it possible to insert rows and columns? I don't have Microsoft Excel but Open Office
    Thanks for your help

    This is not what you do in Acrobat. Page design should be compled (in Excel, Word or any other app) before making the PDF.

  • How to create a graph for the exact values in pivot table

    hi all,
    how can i create a graph exactly that shows pivoted values. i created one pivot table and deleted the table view. when i am creating the graph it is not showing the graph for pivot table values.

    for that you need to edit the pivot table properties and then select graph pivot results tab in the top middle .. hope this helps

  • How do I create a formula to convert words to numbers?

    Hi,
    Basically my spreadsheet is almost entirely words and as numbers (or excel for that matter) work with words (although this I have suggested as an improvement), I need to convert all the words to numerics.
    For example. I have a question with a drop down asking for male or female (I've done drop down lists as I want to cross analyse the results at a later date). I need to create a formula so that numbers automatically counts up all the males and females and puts them in another overall table. I guess I do this by creating a formula for numbers to turn all 'males' into 1 and all 'females' into 2, then ask numbers to count up all the 1's and 2's and put them in a table?
    Here are a couple of images which may or may not explain it further:
    Raw form:
    Second table:
    Message was edited by: lawero
    Message was edited by: lawero

    lawero wrote:
    For example. I have a question with a drop down asking for male or female (I've done drop down lists as I want to cross analyse the results at a later date). I need to create a formula so that numbers automatically counts up all the males and females and puts them in another overall table. I guess I do this by creating a formula for numbers to turn all 'males' into 1 and all 'females' into 2, then ask numbers to count up all the 1's and 2's and put them in a table?
    Wasn't how to "automatically count up all the males and females" already answered in my first post to your question How do I create a graph in numbers? The coloured text is a link to that thread.
    Regards,
    Barry

  • How do I generate a graph in Java?

    I need to implement a graph in java or possibly create a graph in excel through java (if possible). any help would be greatly appreciated as i need to do this within about a week!

    Download JFreeChart and give it a try:
    http://www.object-refinery.com/jfreechart/index.html
    JFreeChart is distributed for free, including the complete source code (subject to the GNU LGPL).
    Regards,
    Dave Gilbert
    JFreeChart Project Leader

  • How to create different Graphs in SharePoint 2013 without using Excel service?

    Hi All,
    I want to create different graphs in SharePoint without using Excel Service.
    I do not want to create excel and then upload that to SharePoint.
    Any one knows how to do that? Isthere any option to do that?
    Thanks in Advance

    Hi Darsh,
    You can use
    SharePoint chart webpart to display charts. Or you can use any jQuery charting library and feed data using JSOM or REST. Ex. high charts:
    http://www.highcharts.com/products/highcharts
    http://office.microsoft.com/en-us/sharepoint-server-help/sharepoint-lists-vi-exciting-ways-to-display-your-list-data-RZ102425636.aspx?section=3
    Best Regards,
    Brij K

  • How to create 2 plots xy graph in excel

    Hi,
    I need help!
    I am trying to create a XY graph in excel which has 2 Plots with a bit different X and Y scales and i am not able to understand how to do it, It should be easy
    basicly i have a table already imported into labview but i cant understand how to create a graph similar to the graph in the attached xls.
    Please see attached xls file with an example for the graph i need which is created from the table inside the xls. 
    Thanks!
    Attachments:
    machs.xls ‏25 KB

    Create clusters of the different sets of x and y data and then build them into an array and feed into the graph. For example....

Maybe you are looking for

  • Bug in OraOLEDB?

    We have recently transfered from oracle 8 on a win2K platform to oracle 10g on a windows 2003 platform. We use VBscripts to carry out various tasks on the database via an ADO connection e.g. Set dbUser = CreateObject("ADODB.Connection") dbUser.Open "

  • Links to Web Service Data Control for complex data types

    Hello Forum members, Could anyone please post good reference links to docs/blogs illustrating how to create and use a Data Control for a Web Serice Proxy Client providing interfcae for a complex xml schema ? Any help highly appreciated :)

  • IPhone is stuck on connect to iTunes, can't connect to computer because it crashed.  Any suggestions to get unstuck?

    I tried to do the update, and went to plug the phone into my computer but it has crashed and I can't access my iTunes right now.  Phone is stuck on connect to iTunes.  Is there any way to cancel it and get the phone off of this without plugging it in

  • Windows 2003 Standard-Network Password-never had to enter before

    I am on a server at my office.  My individual workstation is Win 7.  The server is Windows 2003 Standard.  Yesterday, I lost connectivity to the net work drives, and my computer is asking for a username and password to get into the server. I did not

  • EDI - Material doc not created

    Hello,        Iam working with WMMBXY/WMMBID02 (WMMB)  to post a GR on receipt of an inbound IDOC.Iam able to post the GR but material document is not created.Iam posting against an inbound delivery created against a stock transfer order.In my case I