I am currently using the following formula in excel to extract numbers from a field with (text + numbers):
IF(SUM(LEN([@[Layer Name2]])-LEN(SUBSTITUTE([@[Layer Name2]], {"0","1","2","3","4","5","6","7","8","9"}, "")))>0, SUMPRODUCT(MID(0&[@[Layer Name2]], LARGE(INDEX(ISNUMBER(--MID([@[Layer Name2]],ROW(INDIRECT("$1:$"&LEN([@[Layer Name2]]))),1))* ROW(INDIRECT("$1:$"&LEN([@[Layer Name2]]))),0), ROW(INDIRECT("$1:$"&LEN([@[Layer Name2]]))))+1,1) * 10^ROW(INDIRECT("$1:$"&LEN([@[Layer Name2]])))/10),"")
I am new to Alteryx and cannot find corresponding functions in Alteryx to make the above into an Alteryx expression.
Can you pls help with translating the xls formula into an Alteryx expression?