Reputation: 216
I have a data in "A" column like as below starting from A2 cell.
7cz2
6789efg
abc890
34l1
78kk
88
63
What I need is
7
2
6
7
8
9
8
9
0
3
4
7
8
8
8
6
3.
I do have applied =VALUE(REGEXREPLACE(A2,"\D+", "")) but is is giving me data like
72
6789
890
34
78.
Is there a way to solve this.Thanks in advance.
Upvotes: 0
Views: 50
Reputation: 18707
Use 2 formulas.
=REGEXREPLACE(JOIN("",A1:A7),"[A-Za-z]","")
=TRANSPOSE(REGEXEXTRACT(C1,REPT("(.)",LEN(C1))))
The result:
Upvotes: 2