I have a list of items and data that I need to map into a 3 by 3 cell matrix, and I am struggling to find a way to do this so that the items and data can be changed and matrix would be updated based on the new items/data.
Here is the sample of what I am looking to accomplish. I would want the matrix of Rating by Durability to be populated by the Units listed under the Item colum according to each item's Rating and Durability. How might I go about doing this?
Here is the sample of what I am looking to accomplish. I would want the matrix of Rating by Durability to be populated by the Units listed under the Item colum according to each item's Rating and Durability. How might I go about doing this?
Book1 | ||||||
---|---|---|---|---|---|---|
B | C | D | E | |||
2 | Strong | Moderate | Weak | |||
3 | Best | Unit 1 | Unit 4 | |||
4 | Better | Unit 5 | Unit 2 | Unit 6 | ||
5 | Good | Unit 7 Unit 8 | Unit 3 Unit 9 | |||
6 | ||||||
7 | Item | Rating | Durability | |||
8 | Unit 1 | Best | Strong | |||
9 | Unit 2 | Better | Moderate | |||
10 | Unit 3 | Good | Weak | |||
11 | Unit 4 | Best | Moderate | |||
12 | Unit 5 | Better | Strong | |||
13 | Unit 6 | Better | Weak | |||
14 | Unit 7 | Good | Moderate | |||
15 | Unit 8 | Good | Moderate | |||
16 | Unit 9 | Good | Weak | |||
Sheet1 |