I have a set of data, if you see the data set, because of account code for row 2 and row 3 are not the same so I can't summarize it. When you look at first row, the amount is submission of the 2nd and 3rd row. I want to split the first row into 2 rows and the amount is totally the opposite amount of 2nd and 3rd row. And also, the first row "T0 Fund analysis code" has to be the same compare to second row and third row "Fund". Please see below for the input data
| Account Code | T0 Fund Analysis Code | Fund | Period | Sum_Base Amount |
| 3361010000 | GTNPPAH | ITPALIF | 2020007 | -2495293.23 |
| 3361270000 | ITPALIF | GTNPPAH | 2020007 | 2335158.25 |
| 3361280000 | ITPALIF | GTNPPAH | 2020007 | 160134.98 |
i want to have the result show below
| Account Code | T0 Fund Analysis Code | Fund | Period | Sum_Base Amount |
| 3361010000 | GTNPPAH | ITPALIF | 2020007 | -2335158.25 |
| 3361010000 | GTNPPAH | ITPALIF | 2020007 | -160134.98 |
| 3361270000 | ITPALIF | GTNPPAH | 2020007 | 2335158.25 |
| 3361280000 | ITPALIF | GTNPPAH | 2020007 | 160134.98 |