Hello,
There are several solutions to Sum from Text ...
Could you provide several examples of these ' special ' cells ...
=RIGHT(A1,SUM(LEN(A1) - LEN(SUBSTITUTE(A1, {"0","1","2","3","4","5","6","7","8","9"},""))))*1
Hello,
You can use following Array Formula
Code:=SUM(RIGHT(A1:A5,1)*1)
Hope this will help
If there is more than 1 alpha character, you could use
Drag down and then autosum at the bottomCode:=RIGHT(A1,SUM(LEN(A1) - LEN(SUBSTITUTE(A1, {"0","1","2","3","4","5","6","7","8","9"},""))))*1