Hello,
Need some help here... I'm going crazy with all the numbers...
I need to calculate the weighted score for a long list of items, which is organised into a hierarchical tree with max of 5 levels, i.e. item 1 has 5 items under it (1.1, 1.2, 1.3) and item 1.1 has 2 items (1.1.1, 1.1.2) and so on...
However, each item has a weight attached to it, e.g. item 1.1 has weight of 0.2, item 1.2 0.3, and item 1.3, 0.5 (all the weights of lower level items under the same higher level item adds up to 1). Furthermore, each item has a rating given by someone. However, sometimes the rating can be "NA", i.e. not applicable.
To calculate the score for item 1, we need to multiply the lower levels' (e.g. 1.1, 1.2 etc) rating by the corresponding weight to get the weighted score, and then add up all the weighted score and divide by the total weights. Note that NA items' weights will not be included. For e.g. for item 1, the score will be based on 1.1 (Rating =1, weight =0.2), 1.2 (Rating =NA, weight =0.3), and 1.3 (Rating =1, weight =0.5)... since 1.2 is NA, the score for 1 will be (1 X 0.2 + 1 X 0.5)/(0.2 + 0.5).
Is there a smart way to do this in excel? I have a small sample file, but don't know how to attach here... anyone knows how to attach the file here? For me the problem is how to handle the NA...
Need some help here... I'm going crazy with all the numbers...
I need to calculate the weighted score for a long list of items, which is organised into a hierarchical tree with max of 5 levels, i.e. item 1 has 5 items under it (1.1, 1.2, 1.3) and item 1.1 has 2 items (1.1.1, 1.1.2) and so on...
However, each item has a weight attached to it, e.g. item 1.1 has weight of 0.2, item 1.2 0.3, and item 1.3, 0.5 (all the weights of lower level items under the same higher level item adds up to 1). Furthermore, each item has a rating given by someone. However, sometimes the rating can be "NA", i.e. not applicable.
To calculate the score for item 1, we need to multiply the lower levels' (e.g. 1.1, 1.2 etc) rating by the corresponding weight to get the weighted score, and then add up all the weighted score and divide by the total weights. Note that NA items' weights will not be included. For e.g. for item 1, the score will be based on 1.1 (Rating =1, weight =0.2), 1.2 (Rating =NA, weight =0.3), and 1.3 (Rating =1, weight =0.5)... since 1.2 is NA, the score for 1 will be (1 X 0.2 + 1 X 0.5)/(0.2 + 0.5).
Is there a smart way to do this in excel? I have a small sample file, but don't know how to attach here... anyone knows how to attach the file here? For me the problem is how to handle the NA...