DAX KEEPFILTERS Function

Поділитися
Вставка
  • Опубліковано 27 жов 2024

КОМЕНТАРІ • 39

  • @vrajjindal38
    @vrajjindal38 3 роки тому +3

    No one can explain like you Chandeep. Kudos.. Totally clear and concise

  • @CJ-jc8tn
    @CJ-jc8tn 3 роки тому +4

    Clear and concise explanation of the KEEPFILTER function. Great video and very helpful. Keep up the great work on DAX

  • @ThuHuongHaThi
    @ThuHuongHaThi 2 роки тому +1

    You are my best place to come for DAX :D. Thank you, keep on the greatness.

  • @apamwamba
    @apamwamba 7 місяців тому

    Very clearly explained. in short, on the same color column, you first remove all filters and use filter to produce a table with black only. Then you use AND to combine with others colors. so you essentially have black only. You are adding external filter to the calculate filter. If you dont use KEEPFILTERS, You are replacing the external filter with the CALCULATE filter. We are told is a more efficient way of doing things but hey will leave those details to GOODLY...

  • @chadweber1582
    @chadweber1582 2 роки тому

    This is the best explanation of the KEEPFILTERS function in the entire world.
    Thank you

  • @saifullahkhan3776
    @saifullahkhan3776 6 місяців тому

    I don't usually comment but your videos are too good to resist.

    • @GoodlyChandeep
      @GoodlyChandeep  6 місяців тому

      I am so happy that you did not resist this time 🙏😁

  • @williamarthur4801
    @williamarthur4801 2 роки тому

    Using the 'added ' column to illustrate what was happening was very helpful.
    Too many so called introductions over complicate things using large complex data sets
    which make it hard to see what's actually goin going on.

  • @GodParticleZero
    @GodParticleZero 3 роки тому

    You have the best explanations. Good work

  • @sr5726
    @sr5726 2 роки тому

    Could you explain the difference between keepfilter and filter wrt performance. Why keepfilter is preferred over filter to get only matching values

  • @Tessie1993
    @Tessie1993 3 роки тому

    Hi Goodly, thanks for all the explaining! I was wondering though how it's possible to feed ALL(Products[Color]) as the first argument to SUMX. Because I thought that SUMX only takes a table as a first argument and ALL(Products[Color]) only returns the Color column right?

  • @susantadas8213
    @susantadas8213 3 роки тому

    Using keepfilter with the combination of ALL makes explicitly sense of what keepfilter does in real scenario.

  • @KgasS
    @KgasS 2 роки тому

    Thanks for this video. The way of understanding, the KEEPFILTERS can be thought in this way, is it applies an AND logic with the visual filter. For example, Hey I am Black(KEEPFILTERS argument), are you(Visual element)?. If so do the calculation or the result will be obiviously blank.

  • @vishaljhaveri7565
    @vishaljhaveri7565 Рік тому

    Thank you! Wonderful video, Sir:)

  • @sandeepreddy7687
    @sandeepreddy7687 4 роки тому +1

    Thanks Chandeep for detailed explanation

    • @GoodlyChandeep
      @GoodlyChandeep  4 роки тому

      Thanks Sandeep for avidly watching all my videos.
      Cheers

    • @sandeepreddy7687
      @sandeepreddy7687 4 роки тому

      Honestly your videos give indepth explanation about each dax function. Love your videos and explanation. I always recommend your videos to my friends and colleagues.

  • @abhishektg6321
    @abhishektg6321 5 місяців тому

    what is the difference between filter and keepfilter will both do same work almost can u please explain this?

  • @vrajjindal38
    @vrajjindal38 3 роки тому

    Chandeep whats the difference between ALL and ALLSELECTED

  • @Laxmanmane007
    @Laxmanmane007 3 роки тому

    thanks so much for clear explanation of keep filters

  • @spilledgraphics
    @spilledgraphics 4 роки тому

    Two questions: why is your number formatting is: "00,00,000" and also is this better than using Filter function from a performance perspective?

    • @GoodlyChandeep
      @GoodlyChandeep  4 роки тому

      1. Since my keyboard is set to local Indian Settings that is the way we apply commas in India.
      2. Yes for any standard column filters I'd prefer using KEEPFILTERS and also that is faster :)

  • @Darknesslc3
    @Darknesslc3 3 роки тому

    so basically it is a AND condition function that allows external filter. In your visual the filter context of other color than "Black", is "Red & Black", "Silver & Black", "Yellow & Black"... etc. Am I correct?

    • @GoodlyChandeep
      @GoodlyChandeep  3 роки тому +1

      Yes you are right.
      KEEPFILTERS will add the external filters as well. External filters mean the filters other than the one written in your Dax formula.

  • @mohdmuzammil3059
    @mohdmuzammil3059 4 роки тому

    Thank you chandeep explanation was very helpful and easy to catch new subscriber🙂

    • @GoodlyChandeep
      @GoodlyChandeep  4 роки тому

      Hey I am glad you found it helpful & welcome to Goodly! :D

  • @chahineatallah2636
    @chahineatallah2636 2 роки тому

    Amazing explanation!! 👍

  • @sayi77
    @sayi77 3 роки тому

    Thanks for perfect explanation.

  • @Milhouse77BS
    @Milhouse77BS 4 роки тому

    I like the one line explanation to begin with

  • @KirillBezzubkine
    @KirillBezzubkine 3 роки тому

    Thank you mister

  • @majidismayilov4027
    @majidismayilov4027 Рік тому

    Awesome!

  • @Vaibhav.dange05
    @Vaibhav.dange05 4 роки тому

    I want to show on card last year sales , current year sales and next year sales , how can I do ?

    • @GoodlyChandeep
      @GoodlyChandeep  4 роки тому +1

      I am assuming that you have a Total Sales Measure and a Date Table.
      Write 2 Measures..
      LY Sales = CALCULATE ( [Total Sales], SAMEPERIODLASTYEAR ( Date[Date] ) )
      NY Sales = CALCULATE ( [Total Sales], DATEADD( Date[Date], 1, Year ) )

    • @Vaibhav.dange05
      @Vaibhav.dange05 4 роки тому

      @@GoodlyChandeep Down thanks.., and your video is awesome..