Hi,
I've a dataset below and I would like to update the rows that only have one decimal place e.g. "1.1" "1.2" etc.
It is based on a RAG status and if any of the records contains a RAG status that is "below" the one in the "main" row it should be updated accordingly.
E.g. if "1.1.2" contains Amber then "1.1" should be updated to Amber.
| Number | Colour |
| 1.1 | Green |
| 1.1.1 | Green |
| 1.1.2 | Amber |
| 1.1.3 | Green |
| 1.2 | Amber |
| 1.2.1 | Red |
| 1.2.2 | Green |
| 1.3 | Amber |
| 1.3.1 | Red |
Below is the table with the updated values (rest remains the same)
Many thanks,
Pav