| | XX | XX | XX | XX | XX | XX | XX | XX | XX |
| E1 | -2 | -5 | -59 | -2 | -10 | -29 | -56 | -172 | -501 |
| E2 | 2 | 3 | 4 | 1 | 5 | 2 | 5 | 1 | 2 |
Above in the original table and I would like to change E1 to positive and E2 to negative. I know how to do it for columns but i have a lot of columns so is there a quicker way to convert the rows into negative/positive values faster?
Desired outcome:
| | XX | XX | XX | XX | XX | XX | XX | XX | XX |
| E1 | 2 | 5 | 59 | 2 | 10 | 29 | 56 | 172 | 501 |
| E2 | -2 | -3 | -4 | -1 | -5 | -2 | -5 | -1 | -2 |