+ Reply to Thread
Results 1 to 11 of 11

Dynamic plotting of Risks into a Quadrant View

  1. #1
    Registered User
    Join Date
    11-29-2010
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2016
    Posts
    15

    Dynamic plotting of Risks into a Quadrant View

    Hi Team,
    I have a conundrum. I cannot figure out how to plot risks in a good way on a graph/matrix.

    For example, I have 10 risks that are each rated from 1-5 on both likelihood and probability to get a total number as follows:


    Likelihood Probability Total

    Risk 1 3 4 12
    Risk 2 3 4 12
    Risk 3 3 4 12
    Risk 4 5 4 20
    Risk 5 4 4 16
    Risk 6 4 4 16
    Risk 7 4 5 20
    Risk 8 1 4 4
    Risk 9 3 4 12
    Risk 10 2 4 8

    I want to plot these on a graph in a couple of ways and be able to hyperlink from the plotted graph back to the risk itself.

    I attach what the risk framework looks like and 2 examples of how I would want the plot views to work.

    It would be amazing if someone could help.

    Thanks,

    Shane.
    Attached Files Attached Files

  2. #2
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Dynamic plotting of Risks into a Quadrant View

    This will get you part of the way there. As for the plots and the hyperlinks, I'll have to do some research on that. I was thinking I could do something with an x-y chart, but risks with the same factors would plot on top of one another. Instead of a shape, I may do better with a listing showing what risks fall into which boxes. See the attachment. Would that be good enough?
    Attached Files Attached Files
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

  3. #3
    Registered User
    Join Date
    02-12-2018
    Location
    Cincinnati, Ohio
    MS-Off Ver
    2013
    Posts
    4

    Re: Dynamic plotting of Risks into a Quadrant View

    Hi Shanemoore,

    Interesting, nuanced, request.

    First, I'll say the calculation where you're multiplying the Impact rating (1-5) by the Probability rating (1-5) is probably not necessary when you're planning on plotting them on the grid you provided. When each of the 5 rows/columns in your grid represent the rating for Impact or Probability, there's really no use for the calculation. For this reason, I have removed it from the workbook I have attached.

    Second, the critical piece of your request is the 'click/hyperlink to the risk' functionality, and really throws a wrench in things. In order to set up and actual 'hyperlink' we'd have to take one of two routes;

    Option 1: Set up a specific location for every combination of the ratings (i=1, p=2 or i=2, 3....and so on) in different locations. It can be done, and if you REALLY want this we can continue working.
    Option 2: Write a considerable amount of vba code and ensure your workbook is macro enabled. This can be done, but honestly I wouldn't recommend it (due to the following below).


    This leads me to the obvious way to fulfill this request, but it's not without it's nuances. The 'click/hyperlink' functionality, when you boil it down, is really just the default functionality of a pivot table. If you're willing to accept this piece of it, and the small nuances that come with it, we can get creative to fulfill this request.

    Regarding the 'nuances' I speak of, for example:

    A pivot table won't show axis values that don't exist. If you have no Risks with probability ratings of 0, 1, or 2, they won't show up in the pivot table. One way around this is to add 'dummy' entries to your table of data with all combinations of those values. This is the avenue I took in the attached workbook, and I think it works out quite well from a 'visually appealing & functionally sufficient' standpoint. Where you see '4' in the table on the 2nd worksheet, just double click to get the list of risks associated with those ratings. (Granted it will pull the 'dummy' rating too, but I think it's pretty easy to understand that's a placeholder and should be disregarded. There are other modifications we could make to further clarify.)


    Now you also asked for a possible way to have it displayed as a sort-of scatter plot, if you will. I tried working on this, thinking I could overlay it in front of the pivot table, then push it to the back so when you double clicked it worked with the pivot table...etc. I just couldn't figure out a good way to make the scatter plot work, so I'm stopping efforts and presenting you with this option. Another reporting tool (IE Tableau) would be a great solution to this problem, since the 'click on a chart and have it do something' functionality is not native to excel without macros.


    I hope this helps man. I'm new around here, and I know there's some sort of reputation thing, but I'm not sure how it works. If you found this helpful, and know how the rep works, please feel free to give me a thumbs up.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    11-29-2010
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2016
    Posts
    15

    Re: Dynamic plotting of Risks into a Quadrant View

    Hi dflak - thanks for the excel file in return. I have added to your reputation as a thank you.

    The issue with adding the risk text in the cell as you have done probably wont work as the descriptions of risks in general can be long so would never be stated as "Risk5" or "Risk 6". For example, a risk may be worded as "There is a risk that the engine may overheat due to blah, blah, blah".

    The comments about the same result factors is entirely true. The sum of the impact and likelihood items would have to be 'offset' slightly - perhaps by multiplying by a random number so that they would be shown to be in the same box but could be plotted in a different part of the box. So, if the risk was a '12', perhaps multiplying it by (randomly) 1.025 would still be 12.

    Any other help is gratefully received. You are very clever.

  5. #5
    Registered User
    Join Date
    11-29-2010
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2016
    Posts
    15

    Re: Dynamic plotting of Risks into a Quadrant View

    Hi, thank you so much for this work. It is much appreciated. Cant believe you could turn this around and give me a solution so quickly ! Champ.

  6. #6
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Dynamic plotting of Risks into a Quadrant View

    I'll work on the idea of positioning the shape based on how many shapes are in the box already. Haven't got a clue on that yet, but something to learn. I don't work with shapes a lot.

    I was wondering how to accomplish displaying a link on hover, but that's automatic .

  7. #7
    Registered User
    Join Date
    11-29-2010
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2016
    Posts
    15

    Re: Dynamic plotting of Risks into a Quadrant View

    thanks dflak ! and greetings from Sydney !

  8. #8
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Dynamic plotting of Risks into a Quadrant View

    Another question before I embark on this quest. I notice that you have 16 risks. Could this list be longer? If so, we can move the risks "off to the side" and have the summary information to the right of it.

    Too bad you have Excel 2003. This would have been a good candidate for Excel Tables (Excel 2007 and later), however, we can make do with something called named dynamic ranges.

  9. #9
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Dynamic plotting of Risks into a Quadrant View

    I played with this for a while and learned how to position shapes and put a hyperlink on them.

    I changed the sheet around. I am assuming that you want to have a varying number of risks to evaluate. So I moved the table containing the risks off to the right. You can have any number of risks with the following caveats.
    - Don't put anything else in column K
    - The list in column K must be contiguous (no blank cells)
    - You are on your own to duplicate the formula in column N down.

    The parameters sheet contains the "template" dot. Don't delete it - you can hide the parameters sheet if you want. You should be able to get 12 risks in a box (3 x 4).

    This was a learning exercise for me. I got to play with shapes and hyperlinks.
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    11-29-2010
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2016
    Posts
    15

    Re: Dynamic plotting of Risks into a Quadrant View

    Hi,
    thanks for the notes
    Ummm, I actually have excel 2016. I have not updated my profile. Sorry.
    Per second note, yes, you are correct, any amount of risk is indeed possible but I understand the limitations.
    Thank you for this great work.

  11. #11
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Dynamic plotting of Risks into a Quadrant View

    Since you do have 2016, I updated the program a bit and put the risks into an Excel Table. Here is more information on Tables: http://www.utteraccess.com/wiki/Tables_in_Excel.

    The main advantage of tables that I am using in this program is that when you add data to a table, the formulas, validations, etc. automatically copy down to the new row. I also added some data validation to the two columns to limit data input to whole numbers between 1 and 5.
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Dynamic Four Quadrant Matrix Model
    By KaseyST in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 08-15-2017, 09:33 AM
  2. Plotting Lat/Long in a Power View Map
    By Andelousiano in forum Excel General
    Replies: 1
    Last Post: 02-16-2017, 03:08 PM
  3. [SOLVED] Dynamic Quadrant Issues
    By prosemur in forum Excel Charting & Pivots
    Replies: 3
    Last Post: 06-09-2016, 03:33 AM
  4. plotting a Dynamic Graph...
    By tomsmart27 in forum Excel Charting & Pivots
    Replies: 4
    Last Post: 07-21-2008, 04:13 PM
  5. Risks Matrix Help
    By henrythompson in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-15-2008, 11:04 AM
  6. Dynamic Charts (plotting highest numbers only)
    By paulizaz in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 03-30-2007, 12:03 PM
  7. Vlookup Differentation Risks
    By addie in forum Excel General
    Replies: 1
    Last Post: 07-23-2005, 07:05 PM

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