I am looking to extract string after the last "/" and first "." in excel using one formula. I tried below and it works how can I combine them into one formula?
get string after last “/”
=MID(A1,FIND("=",SUBSTITUTE(A1,"/","=",LEN(A1)-LEN(SUBSTITUTE(A1,"/",""))))+1,256)
Get string before first “.”
=MID(B1,1,FIND(".",B1)-1)