Тёмный
No video :(

Simple Excel Function to Extract Any Word from a Cell - UDF 

TeachExcel
Подписаться 253 тыс.
Просмотров 35 тыс.
50% 1

Опубликовано:

 

21 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 39   
@wayneedmondson1065
@wayneedmondson1065 5 лет назад
Great simple UDF to get the job done.. excellent! Here is my version.. tinkered with it a bit.. just for the practice. It gives the user some in-Cell feedback if wrong delimiter or word position out of range: Function Extract_Text(Search As String, Delim As String, Position As Integer) Dim arr() As String arr = Split(Search, Delim) If Position < 1 Or Position > UBound(arr) + 1 Or InStr(Search, Delim) = 0 Then Extract_Text = "ERROR! - Syntax is: Extract_Text(Search, ""Delim"", Position)" Else Extract_Text = arr(Position - 1) End If End Function Thanks for the inspiration to create. Thumbs up!
@TeachExcel
@TeachExcel 5 лет назад
You're very welcome and thanks for watching! In your udf, I Love the idea of outputting the correct syntax along with the error in a udf!!!! I never thought of that and it really is a great way to make sure a user is aware of the syntax. Also, it's great to see different ways to do the same thing.)
@sergiosoares7588
@sergiosoares7588 2 года назад
Thank you, you are extremely helpful and clear understanding. Look forward to using you in the future.
@Livia-cl2gy
@Livia-cl2gy 2 года назад
You made my job easier. Thank you!!!
@winteriscoming4407
@winteriscoming4407 2 года назад
Thank you! the code helps me a lot
@sachinrasanjana7242
@sachinrasanjana7242 Год назад
sweeeeeeet...... love you..!! exactly what i need
@KBalajiB.ComCommercialHero
@KBalajiB.ComCommercialHero Месяц назад
very useful sir thanks
@didasssendagi9023
@didasssendagi9023 3 года назад
Thanks, this has eased my work. Its an amazing work out.
@saifalsalihee
@saifalsalihee Год назад
Thanks , very useful
@waisans
@waisans 3 года назад
Hi good day TeachExcel...this video is amazing for me...thanks for your kind sharing ^^
@emmywong8093
@emmywong8093 3 года назад
Thank you
@TeachExcel
@TeachExcel 3 года назад
You're welcome Emmy)
@gauravtayal7143
@gauravtayal7143 2 года назад
I want to extract characters between given characters or symbols range
@jamesashmead6308
@jamesashmead6308 2 года назад
This is amazing, thank you. Anyway to stop #Value! When there is no word. So get word on 4th occurance but there is no word so it returns #Value!. Some sentences are 5 words long, some only 3.
@poorsweatybastard
@poorsweatybastard 5 лет назад
Very nice. Thanks. A simple Excel version of UNIX cut -d.
@TeachExcel
@TeachExcel 5 лет назад
Its funny/very annoying how every language has a simple version of this but they didn't put it into an Excel formula by default!
@ivank1469
@ivank1469 3 года назад
How do you extract a string from another string, such as 'bbb' from unstructured strings 12bbb4ty and 1w3bbbrt5? We need to match that somehow and then take it out and this is the regex kind of function. Is something like that an option in Excel? Either way, thanks for help 🙏!
@waynefrancis5843
@waynefrancis5843 3 года назад
@Briar Mario Yea, been watching on Flixzone} for months myself :D
@bradygrady7787
@bradygrady7787 3 года назад
@Briar Mario Definitely, have been using flixzone} for years myself :D
@sazerx5741
@sazerx5741 Год назад
Hi i wanted to hget many words in a column from a one self define command??
@estrellita6851
@estrellita6851 3 года назад
I'm needing to create customer ID using first 3 letters of name and 3 letters of last name as a customer id.. example John Murphy = johmur How can I do that?
@christianmontanogalvez1279
@christianmontanogalvez1279 Год назад
the problem is, what if in the second row the word awesome is now the 5th word instead of 4th.
@irshadbaruah7961
@irshadbaruah7961 3 года назад
how can i extract keywords and create a frequency distribution table in descending order, if I have thousands of data and lets say 4-5 different keywords
@italianstallion7539
@italianstallion7539 2 года назад
what if you have approx 277 vendors and you need to extract just the vendor names from the journal line description
@nayanparmar9127
@nayanparmar9127 2 года назад
how to extract letter form a word or number? for example the word is "Phenomenon " & I need to extract forth letter from this word that is "N" is this possible in excel??????????????
@ISAOHJSAMURAI
@ISAOHJSAMURAI 3 года назад
Hi. I have to extract 15 different words from 5 thousands cells "with different sentences" "in different order". Each cell contains one or two of these 15 words. Therefore your formula doesn't work as each cells are very different. Is there ar formula that can extract the mach word(s)? For example, if the 15 words are, apple, orange, lemon, etc, a formula like =Get_word(cell, "apple", "orange",,,,) and if matches one word, just leave it like "apple".
@Pritam.Bhagat
@Pritam.Bhagat 5 лет назад
That's v g8 🙏
@TeachExcel
@TeachExcel 5 лет назад
Thanks :)
@davidsookharry8555
@davidsookharry8555 4 года назад
I m guessing this will work for dates as well
@TeachExcel
@TeachExcel 4 года назад
Probably not - it depends how your dates are in excel. But you can use DAY() MONTH() YEAR() functions to get the parts of a date.
@amyhowardmiller8328
@amyhowardmiller8328 5 лет назад
Is there a variation of this that will allow me to pull all email addresses out of a spreadsheet that has them in various cells and columns?
@TeachExcel
@TeachExcel 5 лет назад
Not really - you need a macro for this that will search the entire spreadsheet, identify an email address and then copy/paste it somewhere. This is a bit of a process. You can ask for help doing this on our forum or paid help via the Contact section if you like - www.teachexcel.com
@alameenameen1030
@alameenameen1030 3 года назад
I couldnt find the formula get word in excel.. Why?
@sharonraz542
@sharonraz542 3 года назад
Is it possible to save these UDF on every excel workbook?
@RadioChatRO
@RadioChatRO 3 года назад
yes
@seandungan5386
@seandungan5386 4 года назад
Is there a way to get more than one word? I have 1500 pus products and not every 7th word is what I need
@kalawangdude
@kalawangdude 4 года назад
This! I have the same problem.
@kameshsharma5164
@kameshsharma5164 3 года назад
Sir, I request you to please make a formula in which I can extract two or three words from the middle of the line of a cell in Excel. I have made different formulas for both, but I am not able to form a formula by mixing them both. I am sharing both those formulas with you. You are requested to mix these two and make a formula so that I can extract two or three or four words from a line in a cell. Please Please (To extract one word from mid of line) =Trim(MID(SUBSTITUTE(B6," ",REPT(" ",LEN(B6))),(C6-1)*LEN(B6)+1,LEN(B6))) (To extract 2 or 3 word from the starting of the line) =TRIM(LEFT(B1,FIND("~",SUBSTITUTE(B1," ","~",A1)&"~")))
@TeachExcel
@TeachExcel 3 года назад
Karmesh, please ask your question in our forum and include your formulas there and, if it helps, include a sample file. Comments here are difficult to use to solve problems - I am replying only to this comment and not your others, although it was a good technique to get me to notice you, though not as good as asking in the forum ;) www.teachexcel.com/talk/microsoft-office?src=yt_comment
Далее
Ik Heb Aardbeien Gemaakt Van Kip🍓🐔😋
00:41
СЛАДКОЕЖКИ ПОЙМУТ😁@andrey.grechka
00:11
5 Helpful Text Extraction Tips for Excel
23:54
Просмотров 99 тыс.
LAMBDA Function in Excel (CUSTOM Excel Formulas 😮)
13:59
Extract Text Between Two Characters in Excel
6:30
Просмотров 113 тыс.
Extract Numbers from TEXT in Excel
6:01
Просмотров 136 тыс.
Ik Heb Aardbeien Gemaakt Van Kip🍓🐔😋
00:41