"Filter is a table" - i so needed to hear this! Thank You so much!
@Bremerhaven_Rocks7 ай бұрын
Love those visual representation. Truly a picture is worth a thousand words. Combined with clear and precise explanation. Priceless.
@ShrikanthP-je4ki3 ай бұрын
Visually representing the Filter context is a great way to understand the filter/data flow. Thank you for the great explanation.
@gvitullib7 ай бұрын
Thanks for this article/video Marco. Filter context can be complicated, even for expert Dax developers. Articles like this are a must, getting back to the basics.
@jorrellbonner53037 ай бұрын
Wow. I never comment on videos, but this one was actually very, very helpful. Yes. More colorful, simple visuals to convey complex info. :) Kudos!
@Data-v1q3 ай бұрын
This is such an spectacular explanation. You are a fantastic teacher. Thank you!
@dangnguyen54657 ай бұрын
Really like the new way you presented in this video. The visuals make things very clear and easy to understand. I hope you can do more videos like this in the future. All your videos are good, but this could be even better.
@will_will7777 ай бұрын
Thank you very much for the content. I believe that many of us who work with BI understand it better when it is explained visually. Screenshots, calculated results and drawings are quicker to understand than long tutorials in real time. For more videos like this! Thank you for this gift!
@Alma-im4qkКүн бұрын
Excellent explanation. Thank you
@SIWei-vv3xl5 ай бұрын
Accidentally discoverd this Channel. I'd say that the in-depth explanation of how DAX work is excellent ! Thank you very much for you work ! 💐💐
@carltonseymour8697 ай бұрын
What an awesome graphical explanation of Filter context. Key is the Initial context and then the Target context and then using the correct CALCULATE measure
@khaoa72147 ай бұрын
You don't know how much I needed this video at this particular moment!
@aaronrobertcoughlan7 ай бұрын
Clearest explaination for this concept I have ever seen! Thanks guys, this is great
@RubenCarlosCalderonValladares7 ай бұрын
Very clear explanation of an often bypassed topic by beginners. Excellent content as always!
@skv46117 ай бұрын
Cheers sqlbi team, these explanations are mind-blowing. All the time in my bi journey, i could make sense of the actions behind the scenes of the filter context but felt hard to contemplate. Today it's head on.
@manthanmistry12057 ай бұрын
As always you videos are blessing for people like me who are starting to learn and really understand DAX better. Thanks ❤
@IsaiahJones-ty1tx7 ай бұрын
Absolute legends! This is a wonderful resource to learn from and especially to share with new developers!
@geopolityk11607 ай бұрын
This is beatiful. You are stepping up your visauls game. Way to go, looking forward to more!
@kh8844882 ай бұрын
For a visual learner like me, this is very helpful!
@adityakumarsrivastav36777 ай бұрын
Most awaited video. BDW I have read your DAX book. Thanks❤
@sujudfitrialais.kom.3945Ай бұрын
Thank you, SQLBI! Great explanation
@anoopdube95817 ай бұрын
Fantabulous way to explain filter context. Love it
@DeronHuskey7 ай бұрын
I still get wrapped around the axle sometimes when it comes to filter context. This video helped to clear a few things up. Thanks.
@baskis697 ай бұрын
Un video spettacolare... Marco spiega in modo magistrale¡¡¡
@salosteysv7 ай бұрын
Thanks for such a detailed explanation! Very useful and interesting.
@lmblancoancos7 ай бұрын
Thank you very much Marco. Fantastic explanation as always 😄
@manggnorora7 ай бұрын
Thank you so much, it helped clear up a lot of confusion about filters.
@radu_sirbu7 ай бұрын
great video! please, keep doing these visual representations.
@felipe7x3 ай бұрын
what a great explanation, Thank you
@th3n0rthsid37 ай бұрын
The visuals (Whiteboard) really helped, thanks!
@marcelolacoppola71637 ай бұрын
Great video !!! Thanks for sharing, Marcelo, Buenos Aires, Argentina
@ceciliocbaroperez88157 ай бұрын
Marvellous explanation! Many thanks!
@marupbi7 ай бұрын
Ottimo lavoro, come sempre!
@faisalag96117 ай бұрын
Nice explanation. Can we have row context and context transition videos in same format. Thank you
@SQLBI7 ай бұрын
Coming in July/August!
@lolalola84218 күн бұрын
Your videos are great! I have a question: I have this table: Record Type Amount Balance 1 Pledge $100 $50 1 Payment $50 2 Pledge $80 $80 I need to add a column with the bce_2 Record Type Amount Balance bce_2 1 Pledge $100 $50 $50 1 Payment $50 $50 2 Pledge $80 $80 $80 Which formula should I use?
@prasadp28787 ай бұрын
Awesome explanation. Loved it.❤❤
@borisev10977 ай бұрын
Great explanation as always Marco. What is the reason in case I want to calculate sales amount that is not blue, but want to use color slicer and that gives me a static value and not filtered by the color slicer. Not Blue Measure = CALCULATE([Sales Amount], 'Product'[Color] "Blue"). I had to use KEEPFILTERS or FILTER in order to work and use the slicer. Thanks!
@manjunatharalikatti22024 ай бұрын
Nice video... great content .. Thanks.. in the last example data from net price 600 to 999 will it appear or get filtered.. if not please provide the explanation
@ynwtint6 ай бұрын
Thanks. Enjoying DAX.
@michelfigueredoamieva95496 ай бұрын
Amazing explanation. Thanks!!
@mathew96657 ай бұрын
Nicely done Marco
@ivanrybalchenko72257 ай бұрын
Brilliant explanation!
@tibibara7 ай бұрын
Brilliant tutorial, thanks!
@Han-ve8uh7 ай бұрын
This video shows how to make changes to filter contexts, but how do we know what the initial filter context is? Is it always explicitly defined in a measure? I'm concerned certain visuals or default summarization settings implicitly define contexts that can't be easily seen by clicking measures and seeing their dax formulas. For example if i come across a visual, shoui ld look in the fields to find definitions of measures to understand the starting context? How to make sure all existing filters are accounted for exhaustively? What other places can they exist in? (This video shows filter pane is a source of existing context too) For overwriting/keeping contexts does it propagate through the entire lineage of definitions? For example 16:06 shows Bnechmark 2017 measure depends on another measure Sales 2017 which depends on Sales Amount.
@SQLBI7 ай бұрын
The purpose of DAX is to enable writing measures that work in any context. You can explore the filter context for debugging purposes with the debugger integrated in Tabular Editor 3, or by creating a special measure in the tooltip (DAX Studio has a feature to create it automatically) as described in www.sqlbi.com/articles/displaying-filter-context-in-power-bi-tooltips/
@fpa897 ай бұрын
Very nice video and well produced
@RobertoStaltari7 ай бұрын
Let's not forget that if the year used from a calendar dimension table is sorted by some other column of that table, also this sorting column is part of the filter. I learned this lesson in the hard way 😢
@manuprakash19895 ай бұрын
Well explained sir!!! Thank you!!
@jimminyjohnsonАй бұрын
In the last example, with both net price 1,000, you said that 'both remain'. Different results depending if this means they are a union or an intersection. I will test this myself eventually but can't for a few days
@SQLBIАй бұрын
Different filters in the filter context are always in an AND condition - remain means that you get an intersection because of the AND condition between filters.
@jimminyjohnson16 күн бұрын
@@SQLBI ❤Thank you for this clarification
@sindibad6027 ай бұрын
Finally the so waited pedagogical paradigme shift from Sqlbi
@yosephtavianusandreas1980Ай бұрын
in 3:07 minute. i try to sum manually using calcultor. sub sum is not proper with detail number. i have get some condition. How to make it same , please advice
@avecNava7 ай бұрын
Filter Context NOT a myth anymore. #SQLBI team never disappoints us.
@TomGee-n1n7 ай бұрын
How do you filter a virtual table inside a measure using a selectedvalue from a disconnected slicer? The filtered table returns no data - as if the selectedvalue were returning multiple values - but it is not! If I put a default value in the selectedvalue variable it works as expected, and likewise if I return just the selectedvalue variable - it dynamically shows the value selected in the slicer. Yet the selected value doesn't seem to be recognized when used to filter the virtual table. Help!?
@SQLBI7 ай бұрын
SELECTEDVALUE returns a single value, you should use VALUES to get all the selected values. Indeed, SELECTEDVALUE internally uses VALUES; as described in dax.guide/selectedvalue/
@Davide737 ай бұрын
Should we always use KEEPFILTERS? My question is based on the assumption we cannot control if an user adds an external filters, for example just for filter a location or an year... if in our measure we use the "same filter", we overwrite the user filter... so isn't it safer to always use it?
@SQLBI7 ай бұрын
It depends, see www.sqlbi.com/articles/best-practices-for-using-keepfilters-in-dax/
@Davide737 ай бұрын
@@SQLBI Thank you!
@tuliomazzarotto25884 ай бұрын
Phenomenal
@GuiSaviolo7 ай бұрын
I didn't quite understand the last example. Are the net price items with value above 600 going to be used in the calculation?
@SQLBI7 ай бұрын
No, because all filters (the orange one and the blue one) are active at the same time.
@marcellinehouabolet82737 ай бұрын
Fantastic!
@techspark0012 ай бұрын
why is the sum of the various amount for the colors not equal to the contoso amount
@dg_calderon7 ай бұрын
me costo un poco seguir el video ya que lo veo con subtitulos en español, asi que lo repeti y detuve hasta entender un poco... seria muy bueno que se pudiera traducir los videos a diferentes idiomas. Saludos desde Colombia.
@SQLBI7 ай бұрын
We evaluated that, but it's too expensive for now. KZbin will likely implement not too far in the future.
@ceyhunozturk51157 ай бұрын
Thanks.
@JBartlett_DMU7 ай бұрын
Wow, I think I might actually kinda understand this concept now. 😅