Page 1 of 1
extract text
Posted: Wed Oct 12, 2022 6:34 am
by sna
Hi there
I need your help how to extract text from cell containing Widget.
I attach a template as well
Thanks
Re: extract text
Posted: Wed Oct 12, 2022 11:39 am
by snasui

In C2 enter this formula,
=FILTERXML("<k><m>"&SUBSTITUTE(SUBSTITUTE(A2,"_"," ")," ","</m><m>")&"</m></k>","//m[contains(.,'Widge')]")
or
=TRIM(LEFT(SUBSTITUTE(MID(A4,AGGREGATE(15,6,SEARCH({"Econo","Ultra","Thermo","|"},A4&"|"),1),20)," ",REPT(" ",20)),20))
Enter and copy down.
Re: extract text
Posted: Wed Oct 12, 2022 1:18 pm
by sna
Thank you so much

Re: extract text
Posted: Sat Oct 15, 2022 11:34 pm
by sna
I got a problem bec the results not like the color cells in next column
Thanks
Re: extract text
Posted: Sun Oct 16, 2022 1:57 am
by norkaz
...
B2
=IFERROR(INDEX({"WELVU","ECONO","ULTRA","BC","DENDR","THERMO"},MATCH(TRUE,SEARCH({"WELVU","ECONO","ULTRA","BC","DENDR","THERMO"},A2)>0,0)),"")
Norkaz
Re: extract text
Posted: Wed Oct 19, 2022 9:17 pm
by sna
Thanks