5 Excel Cell Splitting Hacks You Wish You Knew Sooner

Поделиться
HTML-код
  • Опубликовано: 17 дек 2024

Комментарии • 32

  • @MyOnlineTrainingHub
    @MyOnlineTrainingHub  День назад

    ❓What’s the trickiest data-splitting problem you’ve faced?
    Learn more about the Advanced Excel Formulas course: bit.ly/splitcells24course

    • @GeertDelmulle
      @GeertDelmulle 12 часов назад

      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! :-)

  • @JJ_TheGreat
    @JJ_TheGreat 2 часа назад

    10:12 You can also use Power Query to split vertically into rows, as well!!!

  • @nikhilphul
    @nikhilphul 10 часов назад +1

    The last trick was awesome....

  • @chrism9037
    @chrism9037 12 часов назад

    Super job Mynda!

  • @yogirajoo
    @yogirajoo 9 часов назад +1

    One colum vertical splitting into rows in very brilliant idea ! I liked this tip very well, Many thanks !!

  • @brettburton1477
    @brettburton1477 12 часов назад

    Brilliant thank you

  • @ziggle314
    @ziggle314 11 часов назад

    Nice job. Thanks, Mynda!

  • @karllinguistik7244
    @karllinguistik7244 12 часов назад +1

    Excelent! I really appreciated for your help. Basic but important to remember. Thanks a lot.

  • @buddhilalchaudhary4949
    @buddhilalchaudhary4949 12 часов назад

    Thank you Myndi, What a good tips to convert from text to tables and rows. I love it.

  • @nazarkamal8831
    @nazarkamal8831 7 часов назад

    ❤❤❤❤❤❤❤🎉 spreadsheet Excel

  • @happymystic9800
    @happymystic9800 5 часов назад

    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! ❤😊❤

  • @BaSYaVSkI
    @BaSYaVSkI 10 часов назад

    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.

    • @MyOnlineTrainingHub
      @MyOnlineTrainingHub  51 минуту назад

      It's amazing how often we get stuck in our usual ways! Glad I could offer some alternative ideas.

  • @GeertDelmulle
    @GeertDelmulle 12 часов назад

    Great synopsis, Mynda.
    OTOH, I would still have completely “vectorized” the TEXTSPLIT solution, because I like single cell solutions and just because we can. :-)

  • @cruzianfibergeek
    @cruzianfibergeek 9 часов назад

    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?

    • @MikeStice
      @MikeStice 7 часов назад +2

      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.

  • @ivanbork4175
    @ivanbork4175 12 часов назад

    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! 🎄✨"

    • @MyOnlineTrainingHub
      @MyOnlineTrainingHub  53 минуты назад

      Thanks so much, Ivan! Your continued support is appreciated. 🥰

  • @JoseAntonioMorato
    @JoseAntonioMorato 12 часов назад +2

    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)) 🤗