For numbers x and y, I have cell data formatted as x@y.
An example row:
| A | B | C | D |
| ------ | ------ | ----- | ------ |
|10@100 | 10@120 | 8@150 | 5@175 |
I want to parse this type of row into two quantities: the sum of the x's and sum of y's.
With my example, I should have two cells: 33 and 545
Basically, I want to SUM the resulting array of SPLIT applied to each cell in A1:D1.
My attempt
=SUM(ARRAYFORMULA(SPLIT(A1:D1, "@")))
Unfortunately, this approach doesn't allow me to specify whether I want x or y (when I call SPLIT) and it seems to be returning x + y, rather than sum(i=1 to 4) x_i.


