Forum Discussion

frankfurter's avatar
frankfurter
New Member
10 years ago
Solved

Visualizing textual data, like YES/NO questions

Howdy folks - first post! Couldn't find the answer to this in the forums, and not sure I can even ask it right, but here goes.   I have a spreadsheet similar to this:               2014   2015 S...
  • USG_Phil's avatar
    10 years ago

    I've dealt with this myself (though in my case it was TRUE/FALSE values).  Here's how I solved it:

     

     - Created a new calculated field called "Achieved or Missed" (you should use something appropriate for your data), assign it a numerical value of '1' whenever the original field's value is 'Yes' or a numerical value of '0' whenever the original field's value is 'No'

    - Create 1 new measure called '% Achieved' --- SUM('Achieved or Missed') / COUNT('Achieved or Missed')

    - Create 1 new measure called '% Missed' --- (COUNT('Achieved or Missed') - SUM('Achieved or Missed')) / COUNT('Achieved or Missed')

    - Use a Stacked Bar (or Column) chart and plot the 2 measures.