How to extract words from sentence with FILTERXML - KING OF EXCEL

Tuesday, December 31, 2019

How to extract words from sentence with FILTERXML

How to extract words from sentence with FILTERXML

This is CRAZY!!!. I stumbled on a weird use for FILTERXML() while reading a forum post earlier today. So I couldn’t wait to test it. I am happy to share the results.
Say you have some text (sentence / phrase / keyword etc.) in a cell and you want to extract the nth word. Unfortunately Excel doesn’t have SPLIT() formula. So we end up writing obscenely long array formulas or use gazillion helper columns.
Here is the super sneaky trick. Use FILTERXML() instead.
See this example
Extract words with FILTERXML() - Crazy formula trick

How to extract words from sentence with FILTERXML

Say you have a long sentence (or keyword phrase) in cell C3.
Step 1: Convert this to valid XML
This sounds complicated that it is. All you need to do is prefix, insert and suffix some tags. Like this:
="<DATA><A>"& SUBSTITUTE(C3, " ", "</A><A>") & "</A></DATA>"
This will turn C3 in to a valid XML block with each word as <A> node.
Step 2: Use FILTERXML on this to extract words
Now that we have valid XML, you can say =FILTERXML(C5, “\\DATA\A[3]”)
to extract the 3rd word from our XML converted sentence.
Step 3: There are no more steps. Enjoy FILTERXML.
Bonus trick: Use [last()] to get the last word. For example, =FILTERXML(C5, “\\DATA\A[last()]”) will get you the last word from sentence.

Watch this – how to extract words with FILTERXML() in Excel

I was so excited to learn about this that I recorded a video in my robe. Rated A (for awesomeness), 

Download example workbook

Click here to download the example file for this tipPlay with FILTERXML to learn more.
#evba #etipfree #kingexcel
📤You download App EVBA.info installed directly on the latest phone here : https://www.evba.info/p/app-evbainfo-setting-for-your-phone.html?m=1

Popular Posts