I am extracting numerics and dates from a column containing mixed strings as shown in the sample table below.
Subscriber Name
123456789123 null null
null
null null null
5/23/2016
hello
Good Evening
null 6/11/2016
I am using the Array formula entering with CSE:
{=IFERROR(--SUMPRODUCT(MID(0&Q2,LARGE(INDEX(ISNUMBER(--MID(Q2,ROW($1:$25),1))* ROW($1:$25),0),ROW($1:$25))+1,1)*10^ROW($1:$25)/10),"")}
I am getting following results showing 0 in cells with empty or text cells whereas I require it to be empty. I have tried by inserting IFERROR and "--" also but I still get 0 in the cells. What correction is required in the formula. Further I am also open to VBA solution, if someone offers.