Hello,
I have data with two columns that look like the following:
| Order ID | Amount |
| 123456 | 194.28 |
| 018417 | 480.17 |
| 104772 | 1,294.29 |
I want to create new rows in the Amount field with the negative balance of the amount for each Order ID, such as the following:
| Order ID | Amount |
123456 | 194.28 |
| 123456 | -194.28 |
| 018417 | 480.17 |
| 018417 | -480.17 |
| 104772 | 1,294.29 |
| 104772 | -1,294.29 |
Any ideas for a quick formula to accomplish this? I'm assuming it will happen in a Generate Rows tool, but I think a Multi-Row Formula tool would work as well? Anything helps! Thank you