How do I plot 3 Y-axis in Microsoft Excel?

This is probably more of a VB question but I thought someone here may have had to do this as well. I'm using the Report Generation toolkit to present my data in Excel. I have setup a template and call a couple of macros to format the worksheet.
Thanks

Hi Dan,
take a look in MSDN Library (Visual Studio 6) ... you can find each MS Chart method and property documented (even though I couldn't find anything about multiple Y axis).
Good luck

Similar Messages

  • How to... Web Printing with Microsoft Excel

    Hi All,  I am working with a client that is trying to get "Web Printing with Microsoft Excel" to work in their specific scenario.  They are on 2004s and trying to get this "Web Printing with Microsoft Excel" to work with 3.5x Web Templates, but can't seem to get it to work.
    The How To paper (Version 1.0 April 2005) is specific to NW '04 and below so I'm not sure if it's supported in our 2004s environment. 
    Does anyone know if this "Web Printing with Microsoft Excel" scenario should still work for us in our 2004s environment?  If so, do you have an example template you can provide or any insight for us?
    Thanks!

    Moving to BI 7.x Queries instead

  • How To Connect To Oracle 11g Database From Microsoft Excel

    Hi All,
    I have Windows7 64bit installed in my laptop.
    I have Microsoft Excel 2007 installed.
    I tried connecting to Oracle database ( This is not a local database).
    Navigation used:
    Data> From Other Sources > From Data Connection Wizard > Other/Advanced > Next > Microsoft OLE DB Provider For Oracle > OK
    Now I get a pop up to enter:
    username
    password
    server
    When I enter all the required details I get this error "ORA-06413 CONNECTION NOT OPEN"
    Is there no need to give PORT number?
    Thanks,
    Vishwamber Shetty

    Hi,
    Did you install oracle client on the machine? Can you do "tnsping <SID>"? Can you connect to DB using sqlplus ?
    Try using tnsname for server name.
    Connecting to Microsoft Data Sources Through ODBC Connection  This shows how to connect using ODBC connection. I think this would be more appropriate.

  • How do I plot a y axis on the left and right in DIAdem/VIEW (version 11.0)?

    I am trying to analyze flight data, and I would like to analyze plots of certain parameters so that they share an x axis. It is necessary to view these using two different y axis, on the left and right. How do I do this in DIAdem (version 11.0) in the VIEW tab? Is this possible to do in the VIEW tab?

    myocom,
    You can highlight random points in DIAdem as well. 
    Here is an example:
    Use the cursor to move to the point you wish to highlight.
    Press the "Set Data Point and Flag" icon on each data point you wish to highlight
    When you are done selecting points, press the "Flags: Copy Data Points" icon - that will copy all X/Y coordinates into two new channels
    I created a REPORT Layout using the original data and the highlighted random points (I added the actual point Z-value above the point, they look strange when written at the exact point). I attached the layout for your reference.
    The complete task took 3 minutes from loading the data to finishing and exporting the REPORT layout. If you have a REPORT layout already, this will take less than 30 seconds ...
    I am not familiar with Matlab, so I can't compare how this works in DIAdem vs. Matlab. You can add the combine the complete process in a Script and it will automatically create this kind of report after simply selecting a few data points in VIEW and then pressing a button ...
        Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."
    Attachments:
    Report with highlights.zip ‏5 KB

  • OSS note fo How to... Web Printing with Microsoft Excel

    Hi BW Gurus,
                          I have documentation, transport request # K903271.QB8  &  R903271.QB8 for Web Printing with MC Excel.  But basis guy he want OSS note #, so that he can import requests.
                          How to find the OSS note related to transport req. I already searched in SDN, and market place but no luck. Please some give me the OSS note.
    Thanks
    Ganesh Reddy.

    Hi,
    Just to give you some information on transport,
    Once the objects are collected in the TR, you need to release the task and then the Main request (TR) in DEV.
    In QA, Go to STMS, Go to Transport icon -> select you system -> Select you requests -> Then click on the truck icon it will prompt for you target client -> go to 3rd tab and then give your options (most of the cases , it is overwrite mode). Then click "OK", they will be imported.
    Note :STMS is used to perform the actual migration of the transport from the source system to the target system but in se09/10 you can only release the transports not perform the actual migration
    And only released transports will show up in STMS queue
    I dont know what is the OSS note your basis guys are talking about.
    may be it is specific to the documentation transport. Please check with them clearly.
    hope this helps
    Cheers,
    Srinath

  • How to Use Web Printing with Microsoft Excel

    Hello,
    In the recent How to paper on Use Web Printing with Microsoft Excel, describes few ABAP classes and methods. Can those classes be modified  to access much more Microsoft excel objects , such as Macro ? Does any body has tried in those lines ? Any suggestions is eagerly awaited.
    regs
    D Bret

    Hi BW people,
    Since we want to modify our reports for printing (and the How-To about enhancement of web printing does not really answer to our requirements) it seems that the Excel alternative is just what we were looking for.
    Unfortunately I have been working with these classes for 6 hours now to get a very simple Excel file, but without success. I did fix the bug like Thomas Kauffman told on the forum, changed the dataprovider and prefixes and I followed every single step of the How-To document(also the check of folder options to open/save the .xls file),... The only thing that happens: the URL has changed (bookmark) and the page is reloaded again.
    So no Excel file, neither a dialogue box. I also walked -a very long time- through the code (in debugging mode) starting from ZCL_RSR_XLS_HELP_WINDOW_PRINT->PROCESS_CMD but I can't find anything!
    Is there anybody with the same problem and -better- with a possible solution to it?
    Thank you very much in advance!

  • How to use GUI_upload for Uploading a CSV file in Microsoft Excel.

    Hi Guys,
                  can anybody tell me how to Upload the CSV format file in Microsoft excel sheet?
    Thanks,
    Gopi.

    Hi Gopi,
    u can use GUI_UPLOAD, TEXT_CONVERT_XLS_TO_SAP.
    Please check these codes.
    Uploading data from CSV file format into internal table using GUI_UPLOAD
    REPORT zupload MESSAGE-ID bd.
    DATA: w_tab TYPE ZTEST.
    DATA: i_tab TYPE STANDARD TABLE OF ZTEST.
    DATA: v_subrc(2),
    v_recswritten(6).
    PARAMETERS: p_file(80)
    DEFAULT 'C:\Temp\ZTEST.TXT'.
    DATA: filename TYPE string,
    w_ans(1) TYPE c.
    filename = p_file.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    titlebar = 'Upload Confirmation'
    * DIAGNOSE_OBJECT = ' '
    text_question = p_file
    text_button_1 = 'Yes'(001)
    * ICON_BUTTON_1 = ' '
    text_button_2 = 'No'(002)
    * ICON_BUTTON_2 = ' '
    default_button = '2'
    * DISPLAY_CANCEL_BUTTON = 'X'
    * USERDEFINED_F1_HELP = ' '
    * START_COLUMN = 25
    * START_ROW = 6
    * POPUP_TYPE =
    * IV_QUICKINFO_BUTTON_1 = ' '
    * IV_QUICKINFO_BUTTON_2 = ' '
    IMPORTING
    answer = w_ans
    * TABLES
    * PARAMETER =
    * EXCEPTIONS
    * TEXT_NOT_FOUND = 1
    * OTHERS = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CHECK w_ans = 1.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = filename
    * FILETYPE = 'ASC
    has_field_separator = 'X'
    * HEADER_LENGTH = 0
    * READ_BY_LINE = 'X'
    * IMPORTING
    * FILELENGTH =
    * HEADER =
    TABLES
    data_tab = i_tab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    * SYST FIELDS ARE NOT SET BY THIS FUNCTION SO DISPLAY THE ERROR CODE *
    IF sy-subrc <> 0.
    v_subrc = sy-subrc.
    MESSAGE e899 WITH 'File Open Error' v_subrc.
    ENDIF.
    INSERT ZTEST FROM TABLE i_tab.
    COMMIT WORK AND WAIT.
    MESSAGE i899 WITH sy-dbcnt 'Records Written to ZTEST'.
    Uploading data from Excel file format into internal table using TEXT_CONVERT_XLS_TO_SAP
    REPORT  zupload_excel_to_itab.
    TYPE-POOLS: truxs.
    PARAMETERS: p_file TYPE  rlgrap-filename.
    TYPES: BEGIN OF t_datatab,
          col1(30)    TYPE c,
          col2(30)    TYPE c,
          col3(30)    TYPE c,
          END OF t_datatab.
    DATA: it_datatab type standard table of t_datatab,
          wa_datatab type t_datatab.
    DATA: it_raw TYPE truxs_t_text_data.
    * At selection screen
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          field_name = 'P_FILE'
        IMPORTING
          file_name  = p_file.
    *START-OF-SELECTION.
    START-OF-SELECTION.
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
    *     I_FIELD_SEPERATOR        =
          i_line_header            =  'X'
          i_tab_raw_data           =  it_raw       " WORK TABLE
          i_filename               =  p_file
        TABLES
          i_tab_converted_data     = it_datatab[]    "ACTUAL DATA
       EXCEPTIONS
          conversion_failed        = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    * END-OF-SELECTION.
    END-OF-SELECTION.
      LOOP AT it_datatab INTO wa_datatab.
        WRITE:/ wa_datatab-col1,
                wa_datatab-col2,
                wa_datatab-col3.
      ENDLOOP.
    reward if helpful
    raam

  • How do I plot multiple points (scatter) on the same graph?

    Hello,
    I have a graph with a fixed X-axis and an array of Y values which varies. How do I plot these new y values without replacing the previous ones? E.g to have a scatter of new data? Example of shown in Figure 1 below:
    Figure 1: (Note: image was photoshopped to demonstrate goal) 
    Figure 2: Current block diagram, LabVIEW VI:
    Thank you!
    Solved!
    Go to Solution.

    Think about what you are really building. You are building an array of clusters, right? For each element in the array you have a cluster whos content has a value for the X axis and a value for the Y axis. As long as you are not connecting the datapoints in the graph (which you aren't), you can plot the datapoints in any order. If you are building your X portion of the cluster seperately than your Y portion of the cluster, you just have to make sure the indexes do not get transposed somehow.
    Build the lower half of the attached picture, and you will see what I mean. (hopefully)
    Attachments:
    Chart.PNG ‏21 KB

  • Multiple plots on Y-axis

    I have multiple plots and how can I plot them with different depth on the Y-axis, Thks

    I followed the example and I could get the plots on different Y scales. However I always get the same plot stacked on the Y scale. See my source
    ReadMultiSampleAsync(samplesPerChannel, m_data);
    m_graphBeat.Plots.Item(
    "Plot-1").PlotY(CNiReal64Vector (m_data));
    m_data.Scale(1,1.0);
    m_graphBeat.Plots.Item(
    "Plot-2").PlotY(CNiReal64Vector (m_data));
    m_data.Scale(1,1.0);
    m_graphBeat.Plots.Item(
    "Plot-3").PlotY(CNiReal64Vector (m_data));
    Please help..

  • How to create a double Y axis bar chart

    I have a table with 3 columns, how to create a double Y axis bar chart with title and scale of one Y axis on one side and the other title on the other side, left and right side of the chart.
    Dec 13 107.9
    Jan 9 106.5
    Feb 11 96.1
    Mar 15 111.5
    Apr 13 106.3
    May 13 101.1
    Jun 14 100.2
    July 18 100.8
    Aug 15 103.4
    Sep 16 108.8
    Thanks a lot!
    Stanley Tam

    Start with chart that looks like a column + line chart with a left & right Y axis. It should be the one on the bottom left. After plotting your two series, go to the chart inspector, series tab, and change the second series from line to column. Go to the Axis tab and choose to show the titles for the Y1 and Y2 axes.

  • How to Use 2 Separate Y-Axis in Report generating Tool Kit

    Hello
    How do I make 2-Y-Axis chart on Word document from Report Generating Tool Kit?
    Now can make Chart to appear in Word document with Multiple plots, but all plots go to same Y-Axis.
    I want to put in chart two Plots with Same X-Axis, but different Y-Axis.
    I know it is possible manually in word, but how  can I do it with Labview RGTK?

    hmm, yes. I guess that is the only alternative. But is there anyone who has made something similar in the past?
    I am not sure how to interpolate this data to an array of 30 000 data points without loosing data in the beginning.
    Since it is exponential, the first few dozen datapoints are at really low freq. All about 10.xx Hz and increasing.
    Then in the end of the array, i have like one datapoint at 15kHz, one at 15,5kHz etc. Will be alot of gaps in my array and alot of lost data in the beginning I think.
    It's strange though that labview doesn't allow for waveform, or atleast let me put an XY-array into these methods since i believe always you want an logarithmic freq-axis when having a frequency-response to handle.
    Anyway, anyone who has a nice little VI that interpolates data like this?

  • How can I change the X-axis increment in a waveformgraph

    The X-axis always increments by 1, but I am acquiring one point of data every 100 ms. So my chart moves 10 times fater that the real time. How can I set my x-axis to increment 0.1 every time I add data to my Waveformgraph in VB net?
    The X-axis collection is not showing any property to change that.
    I have a continuous data acquisition giving me timed data at 100 ms rate.

    Thank you for posting to the NI forums.  You can set the update increment of the WaveformGraph plot function by using the overloaded function as follows:
    PlotYAppendMultiple( ByVal yData As Double(,),
       ByVal orientation As DataOrientation,  
       ByVal increment As Double )
    I did this in the VB.NET example program, "ContAcqVoltageSamples_IntClk", by adding the following line to the dataToDataTable function.
    WaveformGraph1.PlotYAppendMultiple(sourceArray, NationalInstruments.UI.DataOrientation.DataInRows, 0.1)
    The increment will be set to 1 / (sampling frequency), so in your case, it will be set to 0.1.  This function is documented in the NI-DAQmx .NET Framework 2.0 Help.
    I hope this helps.  Post back if you have any further questions.
    Ed W.
    Applications Engineer
    National Instruments
    Message Edited by Ed W on 05-04-2007 10:36 AM

  • 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 does one increase the y-axis (amplitude) of the audio tracks?

    How does one increase the y-axis (amplitude) of the audio tracks? My patient appears to have flatlined. I don't want to increase the gain, just the way the waveform looks on my monitor.

    DrDtMM
    The "Expert view" is a part of the new interface of Premiere Elements 11. In your version 10, you have the Timeline and the Sceneline view choices.
    For now, I will assume that you are in the Timeline view where you utilize video and audio tracks and not a Filmstrip with scene slots.
    I suspect that you may be after the following. Let us see.
    To the right of where it shows the name "Audio 1" is a microphone icon. That represents the "Audio Display Style". There are two Audio Display Styles and you can select one or the other by toggling that microphone icon.
    a. In one instance, you will see the wave form plus a horizontal orange line which is typically the Volume Rubberband for Volume adjust. This Display Style has a light green background.
    and
    b. In the other case, you will see a dark horizontal line, no wave form. That dark line is on a light green background.
    I suspect you are at "b". Are you aware that "a" exists.
    If you want a really blown up version of "a" to look at, you could separate the audio from the video, double click the audio to open the Preview Windows, and then scale up the Preview Window.
    We will be watching for your follow up to see if we are getting in sync.
    Thanks.
    ATR

  • How can I plot the 3d plot of a vibrating bridge?

    Dear all
        My question is as follows:
        I want to plot the mode shape of a bridge. Now the deck of the bridge is vibrating, which can be plot. But at the same time; I want to plot the column of the bridge
    The question is: when some surface of the 3d plot are vibrating, which  means animated plot.How can I plot  the stationary multiple curves at the same time.
    The attached file is one example, but always the mutiple curves disappear when the surface vibrating.
    PS: My VI version is 8.0 How can I save the VI as version 7.x or 6.x, version 8.x seems too new.
    Any reply will be appreciated! Many thanks!
    Attachments:
    format line plot.vi ‏32 KB
    3D plot of mode shape.vi ‏33 KB
    format 3D.vi ‏31 KB

    Sorry,the attached VI should be as follows since there is not data in the array in the previous VI
    Attachments:
    format surface plot.vi ‏20 KB
    3D plot of mode shape.vi ‏31 KB
    format 3D.vi ‏27 KB

Maybe you are looking for

  • Do I need to download Mini Display Port to VGA update?

    I want to be able to watch movies from the MBP on the TV.  (Panasonic 32" about 5 years old).  Air Play doesn't work through the ATV, the stream is erratic and unwatchable.  Both HDMI ports are in use for other things.  So I got a Mini Display Port t

  • MMC finds error with a snap-in when launching Hyper-V manager

    From a clean install of Win 8.1 Pro 64-bit I had used the Hyper-V manager to test some virtualization.  After tinkering around with a few virtual machines I put that aside for a while.  Over the following weeks I continued applying updates as Microso

  • IPhoto missing photos, sorta...

    A strange thing recently happened with my iPhoto. Yes, my Mac and all apps are up to date. I imported some photos from my iPhone. After the import, not all the photos show up in the "Photos" or "Events" sections. However, they do show up in "Last Imp

  • Album has "No photos", but it does.

    I have created an album which I could view. Now when I select it the main window is blank except for "No photos" at the top. However when I try to import the photos again it flags every one up as a duplicate. *** is going on? I had problems under iPh

  • Front window drops back

    I have several windows open. After about five seconds, the front, active window stops being active, so there are no active windows. I can make any window active by clicking on it, but after five seconds it, too, goes in active. What's going on?