Hi!
Might be a stupid question but I would like to change the column header "MetricValue" to the data in "%WeeksBreached" column. The data in "%WeeksBreached" column will all be the same throughout the columns, as it is appended. However, the number can be different eg 0.2 or 0.3 or 0.4. Please see sample input and expected output below:
Input
KRI | MetricValue | %WeeksBreached |
abc | 3 | 0.2 |
def | 6 | 0.2 |
ghi | 2 | 0.2 |
Please see below output, where the 20% comes from the 0.2 in "%WeeksBreached" column.
Output
KRI | 20%WeeksBreachValue | %WeeksBreached |
abc | 3 | 0.2 |
def | 6 | 0.2 |
ghi | 2 | 0.2 |
Solved! Go to Solution.
@tjanwe I would do the following -
This should get you what you need.
If this works for you, please mark it as the solution so others may find it quicker.
Thank you!