Excel - how to calculate a score based on two fields

独自空忆成欢 提交于 2020-01-06 03:33:07

问题


I'm trying to figure out how to calculate a field called "Risk Score" that is based on two different fields without using nested if loops.

The two fields are "Likelihood of Risk" and "Impact of Risk" where the likelihood will be inputted as a % between 0-100% and the impact inputted as either high, medium, low.

Below is an example of the two fields and the calculated fields:

Below is the scoring I would like to derive in the third field based on the two fields.

I don't think I could use Index Match Match since the likelihood score is based on a range and not a specific value.

Please let me know if you have ideas on how I should create the formula for Risk Score. Thanks!


回答1:


Change the ranges of %s to the minimums:

Then a simple INDEX/MATCH/MATCH:

=INDEX($C$3:$E$5,MATCH(H3,$B$3:$B$5,1),MATCH(G3,$C$2:$E$2))



来源:https://stackoverflow.com/questions/49391593/excel-how-to-calculate-a-score-based-on-two-fields

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!