longhornfan
New Member
- Joined
- Dec 16, 2011
- Messages
- 4
All,
I have a fairly large list of metrics and I have built in where a metric does not meet the threshold. What I need is to be able to list out all of those metrics by the week and metric name (and include the value). For example:
<TBODY>
</TBODY>
Desired Output
<TBODY>
</TBODY>
I am not sure the best way to do so. I am doing it manually right now and I need an automated solution either with VBA or a better process.
I have a fairly large list of metrics and I have built in where a metric does not meet the threshold. What I need is to be able to list out all of those metrics by the week and metric name (and include the value). For example:
Metric 1 | Metric 2 | Metric 3 | Metric 4 | Metric 1 Flag | Metric 2 Flag | Metric 3 Flag | Metric 4 Flag | |
Week 1 | 91 | 32 | 91 | 32 | 1 | |||
Week 2 | 90 | 35 | 90 | 35 | 1 | |||
Week 3 | 89 | 37 | 89 | 37 | 1 | |||
Week 4 | 85 | 39 | 85 | 39 | 1 | |||
Week 5 | 83 | 39 | 83 | 39 | 1 | |||
Week 6 | 81 | 40 | 81 | 40 | ||||
Week 7 | 89 | 41 | 89 | 41 | ||||
Week 8 | 85 | 42 | 85 | 42 | 1 | |||
Week 9 | 83 | 43 | 83 | 43 | ||||
Week 10 | 89 | 44 | 89 | 44 | 1 | |||
Week 11 | 92 | 45 | 92 | 45 | 1 | |||
Week 12 | 83 | 46 | 83 | 46 | ||||
Week 13 | 81 | 47 | 81 | 47 |
<TBODY>
</TBODY>
Desired Output
Week | Value | Metric |
Week 1 | 91 | Metric 1 |
Week 11 | 92 | Metric 1 |
Week 4 | 39 | Metric 2 |
Week 5 | 39 | Metric 2 |
Week 2 | 90 | Metric 3 |
Week 8 | 85 | Metric 3 |
Week 3 | 37 | Metric 4 |
Week 10 | 44 | Metric 4 |
<TBODY>
</TBODY>
I am not sure the best way to do so. I am doing it manually right now and I need an automated solution either with VBA or a better process.