I had been reading books/blogs and looking for the videos which explains context transition. So far, no one has explained better than you. Thanks a lot for this crisp clear video on context transition.
I've read multiple DAX books and watched dozens of videos trying to learn context transition, and I still didn't get it, until I watched this video. You did an excellent job explaining a deceptively difficult concept. The parts where you repeated yourself actually helped a lot for me, because each time you said it the first time, I was still thinking "Ummm... I think I maybe understand it, but not sure." And then when you repeated it, I was able to compare what I thought in my head to what you were saying, and that's when it finally clicked. Some people might not like the repetition, but for me, it was absolutely necessary, and I think that might be why none of the other learning resources had managed to convey the concept successfully before now.
To get this concept right, it is necessary to repeat it multiple time in a video. On our part, we need to repeat the video multiple times to get it right!!!
I'm in awe. THE BEST explanation of context transition I've encountered so far. Bought a book, watched multiple videos but still this was very tricky to understand. I'll re-watch this video when I get confused again. Cheers!
Everybody is different, but your teaching style lines up perfectly with my learning style and has been a great help to me. Thanks for your hard work Chandeep!
If a person has basic understanding of DAX, then I wud highly recommend to attend his course or vdos watever suits uhh... Because this person is teaching DAX with such a simple explanation. Big fan of Mr Chandeep.
I would not say it's tricky but it is conceptually correct. When one of your measures is non-iterable it does the whole calculation once and then is applied to the iterable measure, then definitely result will be wrong. Thank you for great video :)
Brother..no word to admire your explaning DAX..it is really final DAX destination...believe me it is coming from my heart....Bhai...your examples literally leave no confusion to understand DAX....I joined class and see explanation difference.........God Bless You bro...🙏🙏🙏🙏🙏🙏
Perfect. It helped me to know that every measure is wrapped around an implicit invisible CALCULATE function in Dax. That's why writing only SUM will not give the same result, you are not writing the same measure, because every measure starts invisibly with CALCULATE 😊😊 love your videos, they help me out a lot, thanks❤
Wow !.. I have watched other context transition videos BUT i only understand now through your explanation.. very clear with examples/illustrations.... thank you very much ! I clicked then the subscribe button :)
Great explanation, simple examples, bravo! While watching this I understood that i had already used this concept intuitively but didn’t fully understand how it worked 😂
This is best explained video for understanding context transition thanks I was trying to learn it since so long finally got it keep making video U will rock....
Nice explanation on context transition. I think for the Best Selling Day measure instead of using values function just the calendar table will also work as it always has unique values to iterate.
Hi Chandeep, great video. but i have one doubt here. when you refere some measure in calculated column like you did for total sales, logically it should not break down. because though u refer measure its a calc column and it should understand only row context and row context disable all active relationships for that table. i tried same now , but it's not breaking down. in video at 11:05 or so values are breaking down.could you please clarify this.
@Goodly, so in the last example you showed of SUM and SUMX with SUMX doing the context transition, if I am not wrong, if we apply VALUES(Test Table) which would result in unique column values and then apply SUMX should work right?
Hi Chandeep, Thanks for explaining this concept in a very easy way. I have a doubt here, why we didn't get the issue in the first example where we have multiple rows for a single date as we have in the second example.
Brilliant video AS ALWAYS! I was just wondering if values(calendar[date]) could be replaced by values(sales[orderdate]). Is this makes any sense? And why/why not is necessary to use the function "related" when using a column of another table (in this case the calendar date). Hope you answer my question(s), many thanks!
Thanks for the wonderful explanation. I just have one question : If there was one more column added to the mocked-up data which enables each row to be uniquely identified, will we still be getting the duplicates? since only the column filter will be applied, I would expect that we would still get them. I am just a bit confused how in the second example, regarding the calculated column, each row is uniquely identified. Can you please elaborate? Thanks a lot!
In case you’re still wondering this 7m later haha, I think I can help. If you add a column that creates a uniquely identified row, it would no longer duplicate the results and you would get the correct answer. The reason is because when Context Transition happens, now the new unique identifier column will be included in the resulting Filter Context, so it won’t pull in the other rows (such as the second row with Category A) and duplicate the results. It will be filtered to that single row and thus sum appropriately.
For [Total Sales] I wonder if the SUM function would work if a RELATED(?) function was used? I’ve read that measures and CALCULATE can take into account table relationships automatically I think, so I wonder if only the measure / CALCULATE work because they are able to bring in the relationship between Calendar and Sales table, while just the SUM by itself cannot unless it’s paired with a RELATED(?) function.
Hi sir, In this lecture you told to create the virtual table using values function to get aggregated sales per day with the distinct Calender Date. But that virtual table is not in the data model so how it will change with the Initial filter context on the calender date. Please help?
I had been reading books/blogs and looking for the videos which explains context transition. So far, no one has explained better than you. Thanks a lot for this crisp clear video on context transition.
100%
I've read multiple DAX books and watched dozens of videos trying to learn context transition, and I still didn't get it, until I watched this video. You did an excellent job explaining a deceptively difficult concept. The parts where you repeated yourself actually helped a lot for me, because each time you said it the first time, I was still thinking "Ummm... I think I maybe understand it, but not sure." And then when you repeated it, I was able to compare what I thought in my head to what you were saying, and that's when it finally clicked. Some people might not like the repetition, but for me, it was absolutely necessary, and I think that might be why none of the other learning resources had managed to convey the concept successfully before now.
To get this concept right, it is necessary to repeat it multiple time in a video. On our part, we need to repeat the video multiple times to get it right!!!
I'm in awe. THE BEST explanation of context transition I've encountered so far. Bought a book, watched multiple videos but still this was very tricky to understand. I'll re-watch this video when I get confused again. Cheers!
Thanks Kaylie, glad it helped.
I made another one on Context Transition here - ua-cam.com/video/NkYwwb7I3BY/v-deo.html
Cheers
As always, an outstanding explanation.
Most tricky concept in DAX I ever felt... very well explained 👍
Tricky Example Number three was beautifully explained.
Everybody is different, but your teaching style lines up perfectly with my learning style and has been a great help to me. Thanks for your hard work Chandeep!
Thanks a lot Alex
Best. Clearest explanation!!! Thank you!!!🎉
If a person has basic understanding of DAX, then I wud highly recommend to attend his course or vdos watever suits uhh... Because this person is teaching DAX with such a simple explanation. Big fan of Mr Chandeep.
Thanks Naman :)
Excellent!! The clearest explanation of iterator functions.
Brilliantly explained with tricky examples nitty gritty of context transition
By far the best explanation of the most advanced concept of DAX.
Thank you.
The best explanation I have seen so far. Thanks!!!
Best channel for DAX, PQ & PBI.
🙏
Great and elaborate yet simple enough explanation for this confusing subject. I feel like I finally have a clear idea how context transition works.
Glad that was useful 💚
I would not say it's tricky but it is conceptually correct. When one of your measures is non-iterable it does the whole calculation once and then is applied to the iterable measure, then definitely result will be wrong. Thank you for great video :)
Finally a clear explanation of what context transition means. Thank you, subscribed to your channel.
Glad it was helpful!
Simply Amazing ,Even Some Experienced people fail to explain the way you explained.
One of the best videos on Context Transition, thanks for the explanation!!
Best explanation ever. Thanks a ton!
You're very welcome!
Brother..no word to admire your explaning DAX..it is really final DAX destination...believe me it is coming from my heart....Bhai...your examples literally leave no confusion to understand DAX....I joined class and see explanation difference.........God Bless You bro...🙏🙏🙏🙏🙏🙏
Thanks Ankush :)
Perfect. It helped me to know that every measure is wrapped around an implicit invisible CALCULATE function in Dax. That's why writing only SUM will not give the same result, you are not writing the same measure, because every measure starts invisibly with CALCULATE 😊😊 love your videos, they help me out a lot, thanks❤
Wow !.. I have watched other context transition videos BUT i only understand now through your explanation.. very clear with examples/illustrations.... thank you very much ! I clicked then the subscribe button :)
Glad it was helpful! :)
this is insane video. Superb brother... Thanks so much for the video
Best explanation on the subject I've seen 👍
Thanks!
amazing explanation, probably best on the whole internet
I really loved your explainations, especially on that ticky concept of context transition. Bravo !
Glad you love them!
Thanks sir way of explain .keep more video on dax fundamental .
Chandeep, you are brilliant, fantastic. Thank you so much.
A brilliant explanation. Thank you!
Great explanation, simple examples, bravo! While watching this I understood that i had already used this concept intuitively but didn’t fully understand how it worked 😂
Excellent Content...Thank you so much for doing this
Great explanation. Thank you so much!
Great explanation. Thanks
This is best explained video for understanding context transition thanks I was trying to learn it since so long finally got it keep making video U will rock....
Watched again, understanding getting better. 😊
Thanks. Clearly well explained. Specifically, the example on the mock up data was an ‘aha’ moment 😀
easy to understand. thanks goodly
Glad to hear that Teuku!
Very very good explanation! Thank you...
Glad you like it 😊
Wohoo! Brilliantly explained bro!😎🙏
Thank you so much! This is the BEST explanation. I've been struggling for a long time to understand this topic. God bless you!
Glad it was helpful 💚
Great explanation.. Keep it up 👍👍👍
Thank you!
Beautifully explained. Thank you.
Wow, that was an amazing lesson! Broke it down so well!
Glad you liked it!
Thanks for the time and effort taken to explain this concept
Excellent, Clearly well explained.
Superb explanation of Context Transition. Thank you!
Genial, esos ejemplos bastante ingeniosos, especialmente el último
¡Me alegro de que haya ayudado!
Brilliant, and very easy to understand. Thanks, it solved a big problem of today.
Wow Finally understood this 😮❤
Nice explanation!
Love the way you explained it !!! Thank you.
Very well explained many thanks
Glad it was helpful!
very good explanation !
Very Well Explained 👌👍
Thank you!
Awesome. Thank you Bro for explaining the concept...🙂
Glad you like this Jaya!
Amazing explaination ! Thanks
Glad you liked it
No one explained so explicitely. The value of the row becomes a column filter..........
Great explanation
Excellent lesson Chandeep
Awesome....Your explanations is upto the mark. Please bring some more DAX challenges.
Good bless you & Cheers !!!
Glad You like it 💚
Perfectly put. 👍
Great explanations! Thanks!
Crystal clear!
Awesome 👍👍👍
Great explanation as always...
thanks a lot this was bugging me since yesterday. Finally found an apt explanation.
The best explanation of context transition on the whole of f***in youtube
good explanation .......bro
Thanks Suresh!
Thanks for the video
Nice explanation on context transition. I think for the Best Selling Day measure instead of using values function just the calendar table will also work as it always has unique values to iterate.
Yes💯!
Excellent!
Thank you!
That's Amazing .......
Thank you!
Thanks its clear sum and sumx difference
Hi Chandeep, great video.
but i have one doubt here. when you refere some measure in calculated column like you did for total sales, logically it should not break down. because though u refer measure its a calc column and it should understand only row context and row context disable all active relationships for that table.
i tried same now , but it's not breaking down. in video at 11:05 or so values are breaking down.could you please clarify this.
Great. Thx.
@Goodly, so in the last example you showed of SUM and SUMX with SUMX doing the context transition, if I am not wrong, if we apply VALUES(Test Table) which would result in unique column values and then apply SUMX should work right?
Thank you, sir.
Thanks Man !
Nice Explanation
Thank you!
The last example I had in my work today was exactly like this one!
Explain row level security briefly.. strong explanations, amazing and keep going👍👍
Thanks for your help
Happy to help!
Hi Chandeep, Thanks for explaining this concept in a very easy way.
I have a doubt here, why we didn't get the issue in the first example where we have multiple rows for a single date as we have in the second example.
Thanks For the video. How can I get the data set that you used in this video?
Brilliant video AS ALWAYS!
I was just wondering if values(calendar[date]) could be replaced by values(sales[orderdate]). Is this makes any sense? And why/why not is necessary to use the function "related" when using a column of another table (in this case the calendar date). Hope you answer my question(s), many thanks!
nice explanation
Thanks for liking!
Super explanation. One question though. Why would Giuseppe use the measure in the sumx instead of value column?
Thanks for the wonderful explanation. I just have one question : If there was one more column added to the mocked-up data which enables each row to be uniquely identified, will we still be getting the duplicates? since only the column filter will be applied, I would expect that we would still get them. I am just a bit confused how in the second example, regarding the calculated column, each row is uniquely identified. Can you please elaborate?
Thanks a lot!
In case you’re still wondering this 7m later haha, I think I can help. If you add a column that creates a uniquely identified row, it would no longer duplicate the results and you would get the correct answer. The reason is because when Context Transition happens, now the new unique identifier column will be included in the resulting Filter Context, so it won’t pull in the other rows (such as the second row with Category A) and duplicate the results. It will be filtered to that single row and thus sum appropriately.
as i am student i am not affordable to this prices .thanks sir
Thank you
Thanks Chandeep for detailed explanation.
Hello, thanks for your video. How could I know the date, the day, that the maximun sale is achieved?
Write a measure something like
= CONCATENATEX ( TOPN ( 1, Calendar, [Total Sales] ), Calendar[Date], ", " )
@@GoodlyChandeep Hello,, thanks, it works!!
brilliant !
For [Total Sales] I wonder if the SUM function would work if a RELATED(?) function was used? I’ve read that measures and CALCULATE can take into account table relationships automatically I think, so I wonder if only the measure / CALCULATE work because they are able to bring in the relationship between Calendar and Sales table, while just the SUM by itself cannot unless it’s paired with a RELATED(?) function.
Thanks!
Awsomeeeeeeeeeeeeee!!!!!!!!!!
Can you please also show from which table have you used the Year and the Month columns in the table visual.
I use Summarize function to summarize transactional table before using Iterator function It works 😁
Hi sir, In this lecture you told to create the virtual table using values function to get aggregated sales per day with the distinct Calender Date. But that virtual table is not in the data model so how it will change with the Initial filter context on the calender date. Please help?
Thank you sir
All the best