DAX Fridays

In this video I will show you how to do a partial text search of multiple values using DAX! Great DAX lesson to learn how to manage multiple values.
I got asked to do this tutorial based on this power bi community thread:
community.fabric.microsoft.co...
Join this channel membership to get access to all the recorded bites as they become available:
/ @curbalen
Here you can download all the pbix files: curbal.com/donwload-center
SUBSCRIBE to learn more about Power and Excel BI!
/ @curbalen
Our PLAYLISTS:
- Join our DAX Fridays! Series: goo.gl/FtUWUX
- Power BI dashboards for beginners: goo.gl/9YzyDP
- Power BI Tips & Tricks: goo.gl/H6kUbP
- Power Bi and Google Analytics: goo.gl/ZNsY8l
☼☼☼☼☼☼☼☼☼☼
POWER BI COURSES:
Want to learn Power BI? How about you take one of our courses? Here you can find the available courses:
curbal.com/courses-overview
☼☼☼☼☼☼☼☼☼☼
ABOUT CURBAL:
Website: www.curbal.com
Contact us: www.curbal.com/contact
QUESTIONS? COMMENTS? SUGGESTIONS? You’ll find me here:
Linkedin ► goo.gl/3VW6Ky
Mastodon ► @ruthpozuelo@techhub.social
Twitter ► @curbalen
Facebook ► goo.gl/bME2sB
#CURBAL #SUBSCRIBE

Пікірлер: 18

  • @pilarbaldominos2505
    @pilarbaldominos25052 ай бұрын

    I love it! The nice part of your videos is you have ideas that they are simple to implement in different use cases. I will use that on Monday 😀 Thanks!

  • @CurbalEN

    @CurbalEN

    2 ай бұрын

    This was not my idea, i was asked about it but thanks!! :)

  • @bradj229
    @bradj2292 ай бұрын

    I LOOOOOVE the return of DAX Fridays! 🎉

  • @CurbalEN

    @CurbalEN

    2 ай бұрын

    ❤️❤️

  • @AdamZuk1982
    @AdamZuk19822 ай бұрын

    Great video for morning cofe ;). Thank You.

  • @gennarocimmino
    @gennarocimmino2 ай бұрын

    Hi Curbal, Great tutorial, thank you for sharing it

  • @jon4
    @jon42 ай бұрын

    The DAX approach to creating a dynamic slicer is clever, especially the workaround using COUNTROWS to handle multiple selections smoothly. It would be interesting to know the performance implications of this method on larger datasets.

  • @CurbalEN

    @CurbalEN

    2 ай бұрын

    Let us know if you test it in bigger datasets!

  • @geineralbertomejiagarzon4034
    @geineralbertomejiagarzon40342 ай бұрын

    It's great. Maybe I would try to solve it from the source and/or model first, so that the DAX measure is not complicated, but if the business context does not allow it, this advice is excellent.

  • @abhijeetghosh27
    @abhijeetghosh272 ай бұрын

    WoW..WoW..WoW.. @Ruth.. This is just 👌👌😀 Just ♥ this.

  • @CurbalEN

    @CurbalEN

    2 ай бұрын

    😃

  • @Nalaka-Wanniarachchi
    @Nalaka-Wanniarachchi2 ай бұрын

    Cool.Nice tips ....

  • @PicaPauDiablo1
    @PicaPauDiablo12 ай бұрын

    Thank you

  • @user-bg7tw8xo7e
    @user-bg7tw8xo7e2 ай бұрын

    Thank you so much for the content you have been posting on KZread Channel. May I suggest/ask something? Can you please teach us how to create a multilanguage Dashboard in Power BI? I have been looking for something on Google, and KZread and so far I couldn't find anything. Please, can you help me with this? Thank you

  • @ClemsonBrownie
    @ClemsonBrownie2 ай бұрын

    This is great! I actually JUST ran into a similar issue, but instead of OR when selecting values, I need it to be AND. Curious what your thoughts on adjusting the DAX to account for AND instead of OR.

  • @ExcelInstructor
    @ExcelInstructor2 ай бұрын

    1:05, a question if I may? why not use advanced option and simply split it to rows? it will then automatically create 1 column table.

  • @CurbalEN

    @CurbalEN

    2 ай бұрын

    Sometimes you need the data as is. Think ot was complete sentences from a questionnaire instead, you dont want to split them right?

  • @ExcelInstructor

    @ExcelInstructor

    2 ай бұрын

    @@CurbalEN ok, let me try asking other way around. You took your original table, made a reference to it, then you extracted unique values after splitting the text in the column. Your way was to split it to another column and then combined the columns into 1 column and extracted the unique values. So what Im asking is - why do it the long way around, when column split function can split it diresctly into rows, so trying to fast recreate this: let Source = Excel.CurrentWorkbook(){[Name="name"]}[Content], #"Split Column by Delimiter" = Table.SplitColumn(Source, "Column1", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), {"Column1.1", "Column1.2"}), #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Split Column by Delimiter", {}, "Attribute", "Value"), #"Removed Other Columns" = Table.SelectColumns(#"Unpivoted Columns",{"Value"}), #"Removed Duplicates" = Table.Distinct(#"Removed Other Columns") in #"Removed Duplicates" this is mostly what you did. so if you would @ 1:04 opened the advanced options, you would see option to split into rows, so basicly this: #"Split Column by Delimiter" = Table.SplitColumn(Source, "Column1", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), {"Column1.1", "Column1.2"}), #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Split Column by Delimiter", {}, "Attribute", "Value"), #"Removed Other Columns" = Table.SelectColumns(#"Unpivoted Columns",{"Value"}), would be replaced with just this: = Table.ExpandListColumn(Table.TransformColumns(Source, {{"Column1", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Column1")