'Is there a simple way to sum a row of cells that have leading text?

I have 3 cells - they contain these 3 values beginning with 'x' with a sum of 15 that I have input manually for now.

X1 | X4 | X10

Is there an easy way to sum the 1+4+10 to get the 15, in the 4th column?

I can cut the x off the beginning with this formula: enter image description here

How do I cut all the x's off A1:C1, and sum the values in cell D1? I can only use cell D1 for my total. I have tried this: enter image description here

Note: The leading text is always the same! Note: This is just a minimal reproducible example. My real data has 100 columns.

Many thanks

UPDATE:

here is a snip of the answer! not: all cells in range must be populated or will return an error. enter image description here



Solution 1:[1]

If the length of the leading text is fixed (1 in this case):

=SUM(VALUE(RIGHT(A1:C1,LEN(A1:C1)-1)))

then hit Ctrl Shift Enter instead of Enter

Solution 2:[2]

Bit late in response, you may try the one as mentioned below as well

=SUM(IFERROR(REPLACE(A1:C1,1,1,"")/1,0))

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Gabrielle
Solution 2