Using tuple syntax in DAX expressions

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 พ.ย. 2024

ความคิดเห็น • 19

  • @holahandstrom
    @holahandstrom 10 หลายเดือนก่อน +1

    Excellent summary of what is possible with the different DAX-expressions, and when to use which.

  • @sanjeevgupta7177
    @sanjeevgupta7177 4 หลายเดือนก่อน +1

    What a insightful content. Thanks to SQLBI

  • @SQLMonger
    @SQLMonger 10 หลายเดือนก่อน +1

    Excellent presentation and examples! Gave me some MDX chills seeing tuples used like this.

  • @mnowako
    @mnowako 10 หลายเดือนก่อน +1

    Marvelous lesson. I don’t know how I could not know it before :) Thank you Marco and SQLBI Team!

  • @yippiekyoo
    @yippiekyoo 10 หลายเดือนก่อน +1

    It is super helpful that you showed how to use the technique with 2 dimension tables. Really awesome job!

  • @mathew9665
    @mathew9665 10 หลายเดือนก่อน

    at 12:17 noted issue with the code for the dynamic table - the MAX values for Low match the min value for Med, also the same issue between Medium & High - if you applied this you would either get an error or more than 1 price range (depending on how you use that type of table)
    Love the rest of the video content

  • @kopite833
    @kopite833 10 หลายเดือนก่อน +1

    This is so cool, I can definitely use these techniques to simplify and optimise some existing and future queries

  • @Mark-zs9sm
    @Mark-zs9sm 10 หลายเดือนก่อน +1

    Great video. I will start using these techniques right away.

  • @emilmubarakshin49
    @emilmubarakshin49 3 หลายเดือนก่อน +1

    Lots of hidden gems

  • @KedielSanchezMariano
    @KedielSanchezMariano 10 หลายเดือนก่อน +1

    Thanks!!! Always learning something new.

  • @navisalomi
    @navisalomi 10 หลายเดือนก่อน +1

    This is absolutely awesome 🎉❤

  • @ar6715
    @ar6715 10 หลายเดือนก่อน +1

    Amazing..!!

  • @timothytim1053
    @timothytim1053 6 หลายเดือนก่อน

    How did you get that DAX evaluator thing to appear in the left hand side where tables/relationships are?

    • @emilmubarakshin49
      @emilmubarakshin49 3 หลายเดือนก่อน

      It’s the Dax query view - the forth icon added in the left view after viz, table and model

  • @anilkapkoti296
    @anilkapkoti296 10 หลายเดือนก่อน +1

  • @vijayvizzu1
    @vijayvizzu1 10 หลายเดือนก่อน

    Can we able to apply this technique in multiple tables, like we are summarizing records from a single table and matching the tuples, but what if we need to pass the tuple to multi tables by using summarize columns, will this still works ?

    • @SQLBI
      @SQLBI  10 หลายเดือนก่อน

      Look at the last example of the article/video, it seems matching your requirement.

  • @williamarthur4801
    @williamarthur4801 10 หลายเดือนก่อน

    Felice Anno Nuovo, First watch of you this year.
    How would you write this for CONTAINSROW, a function I find endlessly confusing, not sure why, so example ;
    EVALUATE
    FILTER (
    ALL ( Table2 ),
    CONTAINSROW (
    {"Red","Blue"}, [Color] ) )

    EVALUATE
    FILTER (
    ALL ( Table2 ),
    CONTAINSROW (
    {"Red","A"} , [Color], [Item] ) )
    I've tried various options for the above none of which work, any ideas,
    I've also found this re CALCULATETABLE;
    EVALUATE
    VAR ValuesV =
    CALCULATETABLE(
    ALL(Table2[Item] ), Table2[Color] IN { "Red", "Green"} )
    VAR anser1 =
    CALCULATETABLE( All( Table2), [Item] IN ValuesV )
    VAR anser2 =
    FILTER( ALL( Table2) , [Item] IN ValuesV )
    RETURN
    anser1
    The filter works ; answe2 , but not as Calc table, if this is in 'The Book', please let me know.
    Best wishes and success.

    • @SQLBI
      @SQLBI  10 หลายเดือนก่อน +1

      The ALL in anser1 is removing the filter, if you use CALCULATETABLE ( Table2, ... ) then it should work.