I’m using version 25.2.2.2
For example:
A1 = 123
A2 = 456
A3 = 789
I was wondering if there was an easy way to sum 1, 4 and 7 here.
I can extract the number using either VALUE(REGEX($A$1,"[:digit:]")) or VALUE(LEFT($A$1,1)).
Both SUM(VALUE(REGEX($A$1,"[:digit:]"))) and SUM(VALUE(LEFT($A$1,1))) return 1.
Both SUM(VALUE(REGEX($A$1,"[:digit:]")):VALUE(REGEX($A$3,"[:digit:]"))) and SUM(VALUE(LEFT($A$1,1)):VALUE(LEFT($A$3,1))) return an error 502.
For SUM(VALUE(REGEX($A$1:$A$3,"[:digit:]"))) and SUM(VALUE(LEFT($A$1:$A$3,1))) things are different (and I guess it’s a bug). In rows 1/2/3 their return 1/4/7, in another row their return #VALUE
Is it possible to mix both functions?