+ Reply to Thread
Results 1 to 5 of 5

How to make this graph in Excel?

Hybrid View

Beg9inner How to make this graph in... 02-10-2013, 06:16 PM
Beg9inner Re: How to make this graph in... 03-08-2013, 11:30 AM
MrShorty Re: How to make this graph in... 03-08-2013, 12:02 PM
dagagnon Re: How to make this graph in... 03-08-2013, 12:54 PM
Beg9inner Re: How to make this graph in... 03-09-2013, 07:33 AM
  1. #1
    Registered User
    Join Date
    02-10-2013
    Location
    Denmark
    MS-Off Ver
    Excel 2010
    Posts
    9

    How to make this graph in Excel?

    graph.jpg

    Is it possible to make this graph in excel? offcourse by using data
    Negative differentiation = 10
    Positive differentiation = 40
    Compettitve reference = 60


    Thanks in advance.

    Best regards
    Beg9inner

  2. #2
    Registered User
    Join Date
    02-10-2013
    Location
    Denmark
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: How to make this graph in Excel?

    anyone that can help?

  3. #3
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,369

    Re: How to make this graph in Excel?

    I think what you want could be accomplished by using some variation of a stacked column chart or a stacked area chart.

    available chart types: http://www.excelforum.com/excel-char...-in-excel.html
    column charts: http://office.microsoft.com/en-us/ex...in=HA001233737 each value would be its own data series
    area charts: http://office.microsoft.com/en-us/ex...in=HA001233737
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  4. #4
    Registered User
    Join Date
    12-03-2012
    Location
    Canada
    MS-Off Ver
    Access 2007 Excel 2007
    Posts
    48

    Re: How to make this graph in Excel?

    Dim myChart As Chart
    Set myChart = ActiveSheet.Charts.Add
    
    myChart.SerieCollection(1).Name = "Your serie's name"
    myChart.SerieCollection(1).Values = "=" & myWorksheet.name & "!&" & COL_START & "$" & LINE_START & ":$" & COL_END & "$" & LINE_END 
    myChart.SerieCollection(1).XValues "=" & myWorksheet.name & "!&" & COL_START & "$" & LINE_HEADER & ":$" & COL_END & "$" & 
    LINE_HEADER
    This will create a chart with one collection that can have many values per serie.

    You can find a lot of example on the web.

  5. #5
    Registered User
    Join Date
    02-10-2013
    Location
    Denmark
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: How to make this graph in Excel?

    Thanks to you both

    I will try

    Cheers

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1