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....

Similar Messages

  • How to create a pie graph in 10g or 9i forms using beans??

    Hi..
    Please can anyone show me how to use pie graphs in oracle 10g or 9i forms using bean?
    i also want to know how to put data in pie graph.. as u know in column graph for example we have an x-axis and y-axis,and in pie there is no x-axis and y-axis.. so how i can put the same data in pie graph.. and also i may need more than one value for the x-axis or the y-axis to use in pie graph so how can i do it??
    i use set_custom_property to call properties in beans.
    I would so thankful for how can answer me.. please its urgent
    Thanks.

    there are some other posts to this topic - How to create a pie graph in 10g or 9i forms using beans?? and so on.
    use the search function of this forum. this may the fastest way for your urgent question

  • How to create a passsword protection for EXCEL file

    Hi,
    I have created EXCEL, CSV and DBF file generation through Oracle PL/SQL. Now my client expecting to create a password protection. Can anyone tell me how to create a passsword protected file?
    Cheers,
    San

    How to protect an EXCEL file is not an Oracle issue and I don't think you can do this through PL/SQL. It's part of MS Office maintenance itself and it depends on the version:
    http://benosullivan.co.uk/windows/how-to-password-protect-excel-2010-workbooks/
    Werner

  • How to Create three dimentional graph using Oracle Discoverer

    Hi,
    How can I plot four numeric values against the time period using three axes in oracle discoverer. e.g. If I want to plot unit cost, total cost, total sale, and total profit for a given period. I am using oracle discoverer 10.1.2.0.0
    Any help is appreciated!
    Thanks

    What is the one message you are trying to get your graph to convery? Personally, I think the key thing is to keep it simple, just because your data has many dimensions it does mean that you should overload users with information. I would stick to a simple dual aixs combo graph where total cost and total sales are shown as bars against Y1 and total profit is shown as a line against Y2.
    You have total cost so adding unit cost is unlikely to provide additional information and it just adds clutter and confusion to your graph.
    One graph type that might help provide a more powerful message is the bubble-chart which is used to perform quadrant analysis. We have provided a smalla rticl on the benefits of using bubble graphs on the BI Blog:
    Making more of BI Graphs....
    http://oraclebi.blogspot.com/2005/10/making-more-of-bi-graphs.html
    More on the bubble graph
    http://oraclebi.blogspot.com/2005/10/more-on-bubble-graph.html
    Hope this helps,
    Keith
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Beans http://www.oracle.com/technology/products/bib/index.html
    Discoverer: http://www.oracle.com/technology/products/discoverer/
    BI Software: http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples: http://www.oracle.com/technology/products/bi/samples/
    Blog: http://oraclebi.blogspot.com/

  • How do I plot bar graph using MStudio.NE​T for VB

    I can not find the FillToBase property in waveformplot object using MStudio 7.0 for VB.NET. How can I plot the bar graph like that in Mstudio 6.0.

    The Measurement Studio .NET WaveformPlot does not currently have an equivalent for CWPlot's FillToBase property. In the meantime, though, you can use the WaveformPlot's custom drawing services to emulate this functionality. For example, if you dropped a new WaveformGraph on a form, you could copy and paste the following code to draw bar graphs on the WaveformPlot:
    Private Sub OnBeforeDrawPlot(ByVal sender As Object, ByVal e As BeforeDrawXYPlotEventArgs) Handles WaveformPlot1.BeforeDraw
    DrawBarGraph(e, 0, Color.BurlyWood, Color.Firebrick)
    End Sub
    Shared Sub DrawBarGraph(ByVal e As BeforeDrawXYPlotEventArgs, ByVal baseYValue As Double, ByVal outlineColor As Color, ByVal fillColor As Color)
    Dim plot As XYPlot = e.Plot
    Dim g As Graphics = e.Graphics
    If plot.HistoryCount > 0 Then
    ' Clip the data to just what will be drawn with the current axis ranges.
    Dim xData() As Double, yData() As Double
    plot.ClipData(xData, yData)
    ' Calculate the screen coordinates of a base y value and the clipped data.
    Dim baseY As Double = CType(plot.MapPoint(e.Bounds, 0, baseYValue).Y, Double)
    Dim points As PointF() = plot.MapData(e.Bounds, xData, yData, False)
    Dim outlinePen As Pen = Nothing
    Dim fillBrush As Brush = Nothing
    Try
    outlinePen = New Pen(outlineColor)
    fillBrush = New SolidBrush(fillColor)
    ' Iterate through the mapped points and calculate the bar, fill it, and outline it
    For i As Integer = 0 To points.Length - 2
    Dim currentPoint As PointF = points(i)
    Dim nextPoint As PointF = points(i + 1)
    Dim barX As Single = currentPoint.X
    Dim barY As Single = currentPoint.Y
    Dim barWidth As Single = nextPoint.X - currentPoint.X
    Dim barHeight As Single = baseY - currentPoint.Y
    g.FillRectangle(fillBrush, barX, barY, barWidth, barHeight)
    g.DrawRectangle(outlinePen, barX, barY, barWidth, barHeight)
    Next
    Finally
    If Not outlinePen Is Nothing Then
    outlinePen.Dispose()
    outlinePen = Nothing
    End If
    If Not fillBrush Is Nothing Then
    fillBrush.Dispose()
    fillBrush = Nothing
    End If
    End Try
    ' Cancel any further drawing since we completely handled the drawing of the plot.
    e.Cancel = True
    End If
    End Sub
    Hope this helps.
    - Elton

  • How to create a column graph with colors per set of values

    I need to create with Microsoft Excel, a column graph that based on different values, each column will contain different color.
    To be precise:
    E.g.:
    - Green: If it is 0
    - Orange: If it is between 0 and 10
    - Red: If it is more than 10
    I would appreciate to help me how to do this.

    Hi EriValidata,
    According to your description, I get the result as shown in the following figure.
    Is this a correct result? If yes, this is an excel chart with conditional formatting. Please try the following steps to create the chart.
    To accomplish this task, you will need to create three additional columns of data and plot those three columns of data-and not the original column of sales data – in a stacked column chart. As shown in the figure.
    And the formula in C2 is: =IF(AND(B2>0,B2<=10),B2,0). The formula shows the value in column C if it falls between the limits in rows 0 and 10; otherwise it shows 0. The formula is filled into the range C2:E4.
    Then we select the source data with A2:A4 and C1:E4, as shown in the figure to insert a column chart. The chart now shows 3 sets of colored bars, one for each data range of interest.
    And I upload a TEST2.xlsx file on OneDrive, you can download this file via this link:
    https://microsoft-my.sharepoint.com/personal/v-lzng_microsoft_com/Documents/Shared with Everyone
    Hope it’s helpful.
    Regards,

  • How can I plot  a graph in sections???

    Hi
    This is what I am trying to do:
    I have a graph class that uses a double array to plot.. surprisingly a graph. The problem is that the file that I am plotting from is too large to display all of its data at once on the screen.
    What I am trying to do is have a forward and back button that will allow you to display a fixed chunk of data at a time.
    Also does anybody know how to clone a double array????
    Any help would be great...
    Cheers...........

    Read the file.
    Write a funtion to return all values from
    starting from start to end like
    public double[] getData(int start, int end)
    Use the charting tool to plot only the current set of
    values.. Change the start and end parameters according to
    what the user wants.. (forward or backward)
    Try JFreechart... Its an excellent charting tool..

  • How to create folder names based on Excel values or Txt files?

    Hi there,
    I often need to create large numbers of folders based on names I have saved in an Excel spreadsheet. I know in windows there is a way to create a macro within excel that automatically generates folder names based on cell values.
    I was therefore wondering how to do the same on a Mac operating system. The main thing is to find a way to automate the process. I understand this may involve copying the values to a text file.
    Below is an example of the names I need to create folders for (copied from the excel spreadsheet):
    Wash Bowl Small 600
    Deck Mounted Wash Bowl 500
    Wash Basin - 866 - 2 Shelves
    Wash Bowl Large 800
    Built-In Wash Basin With 1-Taphole
    Deck Mounted Wash Bowl 625
    Would really appreciate a simple step by step approach to an explanation. As my understanding of using Automator, Apple Script, Terminal, etc, is extremely basic.
    Thanks and Best Wishes,
    Graham

    Hi Niel,
    Thanks again for another superb response. I have another question. Is it possible to automatically generate sub-folders along with the folder.
    For example:
    Folder                                                Subfolder
    Wash Bowl Small 600          >            2D CAD
                                                               3D CAD
                                                               BIM
                                                               Images
                                                               Brochures
                                                               Specifications
                                                               Technical
                                                               Case Studies
                                                               Operations
    Deck Mounted Wash Bowl 500    >   2D CAD
                                                              3D CAD
                                                              BIM
                                                              Images
                                                              Brochures
                                                              Specifications
                                                              Technical
                                                              Case Studies
                                                              Operations
    Above shows the 9 generic sub-folders I need to create within each folder that is generated.
    Best Wishes,
    Graham

  • How do I plot XY-Graph if case is true?

    It seems to me that it always has to be a while-/for loop before XY-Graph, I need a Case window instead, is that possible? If, how do i make it work?

    The XY graph takes an array of bundled XY values (or vice versa) as input, it does not care how that array has been created or whether it is in this structure or that. I think there must be some basic consept that you are missing, but upload a copy of your VI or a picture of the code and explain what you are trying to achieve, and we'll probably find a solution.
    MTO

  • How to create drilldown bar graph using clicklistener

    Hi,
    I have a view object that sums some data and tags each sum accordingly - eg sum salary grouped by department name.
    I display this using a horizontal bar graph.
    I want to now be able to click on a bar and then have the details displayed in a table. I am led to believe from chapter 24 of the manual it is possible to do using no java coding (ie not having to create a bean etc).
    You can use the row selection listener of a graph (which serves as a master view) to enable clicks on a bar, slice, or other graph data element to update the data in another ADF component (which serves as a detail view). For example, a click on a bar that represents sales for a given product in a graph might cause the display of the detailed sales data related to the product in a pivot table.
    The following requirements must be met to achieve this master-detail processing declaratively:
    1. You must use the same tree data control to provide data for both views as follows:
    1. Bind the graph as a row set to one level in the data control.
    HOW ?
    2. Bind the other ADF view (such as a table or pivot table) to a lower level in the tree data control.
    I don't have a nested iterator - is it saying to use a master-detail scenario like dept/emp ?
    2.
    Set a value for the clickListener attribute of the graph tag in the Behavior page of the Property Inspector and use the processClick method that is already part of the graph binding.
    For example, if the value attribute of the graph tag is value="#{bindings.myGraph.graphModel}", then the clickListener attribute should be clickListener="#{bindings.myGraph.graphModel.processClick}".
    3. Ensure that the partialTriggers attribute on the parent tag for the detail component is set correctly. It should be set to the ID of the graph component.
    You do not have to write Java code for handling clicks on data elements in the graph. The processClick event on the graph binding recognizes click events on data component in a graph and performs the necessary processing.
    Are they suggesting all you need to do is ensure you have proper master-detail tables set up and it will automatically work ?
    cheers
    Edited by: Dom Klein on May 27, 2009 8:06 PM

    Hi Frank,
    thanks for replying. I opened a TAR about this as I cannot produce a drilldown table. I created a VO with my summary - eg
    select decode(manager_id, 100, 'fred',
    123, 'bill', 120, 'kate', 121, 'julia', 147, 'ken', 108, 'james', 148, 'liz',
    149, 'phil', 205, 'jack', 102, 'eric', 'dominic') manager_name, sum(salary) as salaries
    from employees
    GROUP BY
    decode(manager_id, 100, 'fred',
    123, 'bill', 120, 'kate', 121, 'julia', 147, 'ken', 108, 'james', 148, 'liz',
    149, 'phil', 205, 'jack', 102, 'eric', 'dominic')
    Then I created a detail view object (from HR.employees) and added a calculated column :
    SELECT Employees.EMPLOYEE_ID,
    Employees.FIRST_NAME,
    Employees.LAST_NAME,
    Employees.EMAIL,
    Employees.PHONE_NUMBER,
    Employees.HIRE_DATE,
    Employees.JOB_ID,
    Employees.SALARY,
    Employees.COMMISSION_PCT,
    Employees.MANAGER_ID,
    Employees.DEPARTMENT_ID,
    decode(manager_id, 100, 'fred',
    123, 'bill', 120, 'kate', 121, 'julia', 147, 'ken', 108, 'james', 148, 'liz',
    149, 'phil', 205, 'jack', 102, 'eric', 'dominic') AS manager_name
    FROM EMPLOYEES Employees
    I create a new viewlink which links on manager_name. When I run the bc4j appmodule I can see the correct master-detail relationship. IF I drag a master-detail table onto the page it works fine.
    Now if I create a graph using the master and then create a table using the detail I can't get it to use this relationship even after setting the processClick() and the id for the graph set on the partial trigger of the table. Any ideas ?
    cheers

  • How to create multi axis graph with 2 on change of fields and 2 values

    Hi all,
    i am working for a Semi conductor company and I have been madated to evaluate Crystal report 2008 in order to include it in our legacy software.
    So I have tested the soft and it seems to fit to our need.
    But I have a question...
    Here is a scenario i want to create in crystal but I have an error message..
    Can you please tell me if twant I want to achieve is feasisible...and if so how ?
    Thank you
    I would like to create a percent bar chart that contains 2 on change of fields and 2 show values.
    The idea behind in then to have a mutli axis chart in order to print as a line the second values.
    So the first values will be my bar chart in percentage and the second value will be a sum.
    Hope my description is cleat...
    Thank's in advance for your support...
    Have a good day

    There are different ways to achieve that. The simplest i could recall is to have 2 different charts, 1st bar chart and 2nd a line chart, lay one over the other and enable the transparency on the chart which on Top ( say Line ). also, crystal will allow you to control axes etc and make them transparent..

  • How to create a Service Graph on the contract.

    Hi. all
    I have been trying to adapt ACI to service provider but it is difficult to fit it to SP environment.
    Above all service graph hasn't been worked, even though i configured all based on a document regarding service graph.
    ** I can't understand why BD and VRF have to be splited to render service graph. Does it mean another BD and VRF should be added for service graph?
    I heard that a contract dosen't support a redirect action.
    So the traffic interested in a contract cann't be forward to a device cluster on a service graph.
    If anyone succeed a service graph with multiple device clusters, let me know how to do it.
    Thank you.
    Yun.

    Hi Everyone,
    The networking requirements depend on how you want to deploy the services.  In general you need to have a separate Bridge Domain (BD) for the provider and consumer EPGs.  The only exception is when deploying an ADC in one-arm mode.  In that case, both the provider and consumer EPGs must be in the same BD.
    Support for multiple VRFs (i.e. contexts) is dependent on the capabilities of the service node (firewall, ADC, etc.) itself.  Setting a device as multi-context in ACI doesn't make it multi-context; it has to be supported on the device itself.
    I'm happy to put together a quick WebEx to walk through the different deployments and configuration for L4-7 services in ACI.  You can send me your contact information to [email protected]
    Regards,
    Zach

  • How to create notifications or reminders in Excel

    Hi I manage a Sleep lab and I am trying to use excel 2010 to help me remind our patient of their appts.  I will do my best to ask my question as intelligently as I can but please keep in mind I have never really used this program so I my not call certain
    thing by the right name.
      I found a pretty good vid on youtube.  The vid said make a remarks "category" (column c) next to your column B that contains the appointment date.  Then in the remarks column write the following function:
    =if(B2<today()+3,send reminder","")
    The only problem with this "function" is all past appointments (patient that have already been called and have completed their studies will have a message in the remarks column that says "send reminder".
    I just want a reminder message to come up 3 days prior to and on the appointment date; not after the appointment date.  And how do I get the function to understand that I have already reminded the pt.  For ex. If I open the excel program one
    day and see all my reminder and complete the task of reminding the pt of their appt.  how can I get the message to change so the next time I open the program is doesn't remind me to call pt I have already reminded. 

    Well, if you open your file every day, you could use something as simple as:
    =if(B2=today()+3,"Reminder 1",if(B2=today(),"Reminder 2",""))
    However, you would miss sending reminders if you failed to open the spreadsheet all day (maybe you are on vacation, or maybe it is a Sunday reminder for Wednesday and you aren't working that Sunday).
    A safer approach would be to use two cells with dates in them to be "boundaries" for your reminder period. That way when you come in on Monday you can set the start date to Saturday, or on Friday you could set the end date to Sunday.  On "normal" days
    you could have them both equal a date three days in the future (e.g. they equal each other).
    Let's say that the start date is in cell A1 and the end date is in B1.
    =if(and(B2>=A1,B2<=B1),"Reminder 1",if(B2=today(),"Reminder 2",""))
    There are also ways to set up A1 and B1 as drop-down lists so you don't have to type the dates, but let's get your original problem solved before trying to complicate your workbook :-)

  • Service Interface: How to create an SDO graph with tow Objects

    Hi,
    I want to create a Web service interface on top of my application module. Using the Service Interface I select the app mod, service methods and view objects from the data model. My data model consists of a master detail relationship. The Web service should provide an interface that uses a master and its details as parameters in an operation.
    For example a customer and his credit cards. A GET-Operation should return a data structure that groups all objects.
    I do not know how I can configure such a web service.
    How can I achieve such a web service?
    Do I have to code a service method and what is the return type of the method?
    Can I work with existing VOs?
    Do I need 'special' preconditions like a composition between master and detail?
    Any idea?
    Thanks,
    Markus

    Hi Scott
    Bad news. I read several time this thread, but I have not found error in my program ... .
    And I can not see what are really doing APIs of APEX.
    Time is going - so we have make a decision now.
    Probably (as I have no more answers at this forum) - we can not use APEX (as nobody using APEX sessions as I asked),
    as we can not manage its sessions programmatically (too risky).
    Thanks for your answer.
    Andres

  • How to create a custom button in Excel while log on to BI through BEx

    Hi all,
        I have an requirement to add a button in excel application, while we log on to BI
    through BEx.
       I know only that it has to be done with macros. I dont have any idea in this.
        When i click on that button an RFC should get executed.
        Pls help in this, I am not able to move anymore.
    Thanks.

    hello,
    You can try report to report interface, to allow you to jump from one report into a SAP transcation.
    http://help.sap.com/saphelp_nw04/helpdata/en/99/08629bd3e41d418530c6849df303c9/frameset.htm
    for macro's reference and procedure:
    BW Bex 3.x Macros to create Formatted Workbooks - Part 1
    Macros in Bex
    Reg,
    Dhanya

Maybe you are looking for