❓What’s the trickiest data-splitting problem you’ve faced? Learn more about the Advanced Excel Formulas course: bit.ly/splitcells24course
@GeertDelmulle7 күн бұрын
Only recently I made a basic template for projectplanning with an emphasis on resource profiles. I had to unpivot the profiles and subsequently had to generate the date range (grain = day) and unpivot that as well - only considering working days, of course. There were quite a bit of category columns and data types to be applied. Of course I solved this in PQ-M and none of the column headers were hard coded for robustness. Not sure that was the hardest ‘normalisation’/split I’ve ever done, but it was fun! :-)
@SloTownDave2 күн бұрын
Thank you so very much for what you do. You have helped all of us immensely.
@bestamazondeals26142 күн бұрын
A very helpful tutorial video, thank you mam....🌹👍
@yogirajoo6 күн бұрын
One colum vertical splitting into rows in very brilliant idea ! I liked this tip very well, Many thanks !!
@MyOnlineTrainingHub6 күн бұрын
Glad you found it helpful!
@therock6010Күн бұрын
Thank you so much, great support
@buddhilalchaudhary49497 күн бұрын
Thank you Myndi, What a good tips to convert from text to tables and rows. I love it.
@MyOnlineTrainingHub6 күн бұрын
Glad you liked it! 🙏
@karllinguistik72447 күн бұрын
Excelent! I really appreciated for your help. Basic but important to remember. Thanks a lot.
@MyOnlineTrainingHub7 күн бұрын
Glad it was helpful!
@happymystic98006 күн бұрын
This is really a brilliant and valuable video 😊… there are many ways to Rome (aka text splitting), but neither are so easily accessible and perfectly demonstrated as Mynda‘s ways 😊 … Loving it! ❤😊❤
@MyOnlineTrainingHub6 күн бұрын
Thanks so much for your kind words and support!
@ivanbork41757 күн бұрын
Hi Mynda "This isn't just a comment on this video, which was great by the way, but a big thank you for all the fantastic tips you've shared throughout the year. 🎉 Wishing you a Merry Christmas and a Happy New Year! 🎄✨"
@MyOnlineTrainingHub6 күн бұрын
Thanks so much, Ivan! Your continued support is appreciated. 🥰
@chrism90377 күн бұрын
Super job Mynda!
@MyOnlineTrainingHub6 күн бұрын
Thanks so much, Chris!
@ziggle3147 күн бұрын
Nice job. Thanks, Mynda!
@MyOnlineTrainingHub6 күн бұрын
Thanks so much!
@nikhilphul6 күн бұрын
The last trick was awesome....
@MyOnlineTrainingHub6 күн бұрын
😁 so pleased you liked it!
@JJ_TheGreat6 күн бұрын
10:12 You can also use Power Query to split vertically into rows, as well!!!
@MyOnlineTrainingHub6 күн бұрын
Sure can! 😅
@teoxengineer5 күн бұрын
Hi Mynda, Instead of using a table to send an array to the PQ editor, we can also open the relevant array in the PQ editor by defining the name method. What is the difference between both methods?
@MyOnlineTrainingHub5 күн бұрын
The only difference is you'd need to define a dynamic named range so that if your data expands/contracts, the range being returned by the name also adjusts.
@kkravch6 күн бұрын
Thanks. More than one delimiter in PQ as with Excel?
@MyOnlineTrainingHub5 күн бұрын
Yes, you can specify multiple delimiters.
@brettburton14777 күн бұрын
Brilliant thank you
@MyOnlineTrainingHub7 күн бұрын
Thanks for watching 🙏
@khurramyaqub15685 күн бұрын
Superb
@MyOnlineTrainingHub5 күн бұрын
Thank you! 🙏
@GeertDelmulle7 күн бұрын
Great synopsis, Mynda. OTOH, I would still have completely “vectorized” the TEXTSPLIT solution, because I like single cell solutions and just because we can. :-)
@MyOnlineTrainingHub7 күн бұрын
😁 thanks for watching, Geert!
@BaSYaVSkI6 күн бұрын
Often we are instinctively use options that we are used to, without giving it a second thought. Thanks for alternative ideas on how to perform split texts.
@MyOnlineTrainingHub6 күн бұрын
It's amazing how often we get stuck in our usual ways! Glad I could offer some alternative ideas.
@tomekleddo85374 күн бұрын
Hi Mynda, what is your favourite font for Excel?
@MyOnlineTrainingHub3 күн бұрын
Good question. I don't have a favourite though. Aptos is growing on me, but each time they change it, it takes some getting used to. 🤦♀️
@tomekleddo85372 күн бұрын
@@MyOnlineTrainingHub Oh, I didn't even know Aptos has been 'windowsised' for lack of better word. I used to like Segoe UI Light, now I rather stick to Montserrat. Cheers!
@100dollarpie3 күн бұрын
Hello Mynda -- in using "Text to Columns” Step 4, Customize the Split. Select both comma and space as delimiters. And then select "Treat consecutive delimiters as one." Now, when you hit Next, your cleanup is done for you. Happy Holidays. 🎅
@MyOnlineTrainingHub3 күн бұрын
Thanks for sharing. That is a faster way to do it. Happy holidays to you too!
@cruzianfibergeek6 күн бұрын
I recently came across unbreakable spaces while using the options listed here except for power query which I have not used yet. How can I split cells that have unbreakable spaces?
@MikeStice6 күн бұрын
Try =textsplit(a1, char(160)). Char(160) being the non-breaking space character. Alternately you can use the substitute function to replace Char(160) with a regular space.
@MahmoudAllam-vn8mh5 күн бұрын
"Please, I want an Excel list for beginners." 🙏🙏🙏🙏🙏🙏🙏
@MyOnlineTrainingHub5 күн бұрын
You can get started with this video: kzbin.info/www/bejne/nKvHn2SsmK2DqaM
@MahmoudAllam-vn8mh5 күн бұрын
@@MyOnlineTrainingHub Think you ❤
@JoseAntonioMorato7 күн бұрын
Dear Mynda, Your split using the TEXTSPLIT function looks better if spilled: =VSTACK({"FirstName","LastName","YearBirth","MonthBirth","DayBirth"}, DROP(REDUCE("",A2:A32,LAMBDA(a,b,VSTACK(a,TEXTSPLIT(b,{", ","-"})))),2)) 🤗
@MyOnlineTrainingHub6 күн бұрын
Nice formula! Thanks for sharing, Jose.
@JoseAntonioMorato4 күн бұрын
@@MyOnlineTrainingHub The formula you liked improved: =REDUCE({"FirstName","LastName","YearBirth","MonthBirth","DayBirth"},A3:A32,LAMBDA(a,v, VSTACK(a,TEXTSPLIT(v,{", ","-"})))) 🤗