Hey guys, I would like to ask if how can I add numbers in a row based on a given code. I have a data here:
| Code | Amount |
| 74584 | 95007.56 |
| 43575 | -400 |
| 43554 | 890 |
then I want to add these numbers to each code:
74584 = 700
43575= -50
43554= 10
Expected Amount:
| Code | Expected Amount |
| 74584 | 95707.56 |
| 43575 | -450 |
| 43554 | 900 |
Can you help me with this one pls?