Hi,
I would like to allocate a value in different rows into multiple rows. For example, the below tables show what I would like to achieve.
Source table
| Item | Amount |
a | 1 |
b | 1 |
c | 1 |
a+b | 2 (to be allocated into a ,b) |
| a+b+c | 3 (to be allocated into a, b, c) |
Resultant table
| Item | Amount |
| a | 3 (1+1+1) |
| b | 3 (1+1+1) |
| c | 2 (1+1) |
Could anyone please advise which tool(s) & formulas that I can use to make this happen?
Kind regards,
Jaesun