M
Mystery Man
I have a spreadsheet that contains a variety of software bugs. Each
bug has a priority, ie high, medium and low. What I want is to be able
to get the number of bugs for each priority, and as a percentage of
the total.
For example
A B
1 program crashes when selecting employee 123 - high
2 cumbersome way to add payments - medium
3 tab order on form ppp incorrect - low
4 cannot logon for user XYZ - high
5 tab order on form qqq incorrect - low
Number of high priority bugs = 2 (40%)
Number of medium priority bugs = 1 (20%)
Number of low priority bugs = 2 (40%)
Total = 5
ie a query similar to the one below:
=SUM(A1:A5 where B = "high")
bug has a priority, ie high, medium and low. What I want is to be able
to get the number of bugs for each priority, and as a percentage of
the total.
For example
A B
1 program crashes when selecting employee 123 - high
2 cumbersome way to add payments - medium
3 tab order on form ppp incorrect - low
4 cannot logon for user XYZ - high
5 tab order on form qqq incorrect - low
Number of high priority bugs = 2 (40%)
Number of medium priority bugs = 1 (20%)
Number of low priority bugs = 2 (40%)
Total = 5
ie a query similar to the one below:
=SUM(A1:A5 where B = "high")