I wrote a lot of DAX last four years, but I still come here and listen to Alberto whenever I struggle. If you work as a Power BI developer, you will have sleepless nights 😢 Like I do now. On my weekend, I am still trying to solve something that has become my nightmare. The worst part, there will be no one to help you because your case will always be too specific. However, after you solve the issue, you will find a better way, but it will be too late.
I rem jumping into a contract position and was pushed into Power BI, thought it would be similar to Tableau until I had to deal with DAX; and at the time I didn't quite understand (such concepts as...) why we need to used sum over sumx even though I understood the definition. Like you said it was a nightmare... but I'm glad I went thru it and will help me to prepare myself if I ever had to do it again. And yeah this guy in the video breaks it down really well!
Every time I watch a Video of SQLBI I feel like a living example of the Dunning Kruger effect... Thank you for your Videos, they are a dwell of wisdom for me!
Alberto, this video was really helpful and encouraging! Thank you so much! Sometimes I even think that I don’t know why the number is slow or incorrect but when I follow your advice “Slow down, take a deep breath, maybe a cup of coffee and write down the filter context and follow it through your code” the solution hits me in the head. And I’m like “Aha! That is it!” Thank you again! You are awesome!
I met Dax a year back and I fully agree with your point and I started to follow your channel abt half year ago.Dax just like girl friend sometimes makes you smile and cry thanks for elaborate the Dax from fundamental level to help me gain the knowledge day after day
Hi Alberto, thanks very much for your video. I agree with your point that DAX is not an easy language. I started studying DAX in 2019. I read the 1st edition of The Definitive Guide to Dax and Dax Patterns, which I couldn't get any points. Then I started reading the second edition of the books along with the video training. Still, some concepts I was struggling with, such as the way of CALCULATE working. Some of the formulas were working like magic; however, I didn't know the reason why. The reason why I didn't grasp DAX well, in my mind, was TRIAL AND ERROR. I didn't get the point of the four pillars, Evaluation Context, Iterator, Context Transition and Expandaned Table very well. When the formula didn't work, I tried to add CALCULATE between codes without reasoning the code. When I read the second edition 5 times, I started understanding the foundations of DAX and the logic behind it. Now it's the six times I read the book. Wish you and Marco all the best:)
This video, as the others by Alberto and Marco, sheds a light on such a fascinating language. I'd say an "ACADEMIC light", because your teaching approach reminds of the best times of Computer Science Bachelor I lived in late 90s, at "Università La Sapienza" in Rome. Pure gold. I stick to your channel.
Hi Alberto, thanks for this video. It's very encouraging. I have started learning DAX by watching TH-cam videos 2 months ago, but soon I realized that it did not work. Currently I'm reading your book "The Definitive Guide to Dax and Dax Patterns" and I read some parts 2-3 times. I love the way you explain the fundamentals. Thank you so much.
So glad I happened on this--needed to hear this today. I found a bad course on Udemy (not going to call anyone out here), and got very frustrated and discouraged that I couldn't apply any of it in my work. Then found the 2nd edition of the "Definitive Guide..." and I'm starting to get a sense how powerful it is, and for the same reason, why it's so hard to debug, and so easy to get wrong answers without knowing why. Also (best of all) that I'm not stupid, I just had bad teachers until now lol. :) Thanks for what you guys do. You make us cube farmers look good 💪.
Love the chair example! Always something to gain in continually learning DAX. For me DAX is not easy due having to learn it as both a functional and query language.. add to that two contexts to juggle. You’re right understanding theory and practice is the only way. Two things that helped me.. learn on practice mini models that you control, and variables are your friend in building a solution.
I really think you both guys are the most intelligent living humans on earth. Thank you very much for your advice and your videos and courses, this video is very helpful, a masterpiece video!
Thanks, really important lesson that many woud rather dismiss, as you rightfully say. Having been myself from the basic, to C, to assembler, to PL, Pascal, to various dbms, like Clipper, -- Dax is the first language that invokes a strong association with the Hesse's Das Glassperlenspiel-- The Glassbeads Game. Like some complex, but beautiful music, notwithstanding it's seemingly simple "words"
Thanks Alberto. But another huge reason it's still hard is lack of effective and EFFICIENT debugging tool that will expose critical details regarding errors and mistakes. No matters the language, no programming language in 2021 is suppose to feel like trying to solve a rubik's cube. Of course once you understand the concept of solving the cube it's easy and of course you do want eventually to master it and reduce your dependency on debuggers. The question is how hard would it be to get to that point. The harder the challenge is the less people will be able to pass it. Unfortunately DAX is both hard and without a debugger tool - this increases the chance that more people will not be able to pass the challenge. In a result they will waste time, energy and in some cases money in a try to get there. If you ask me, without debugger capabilities it's 99% harder to master DAX. The question is why nobody develops a convenient tool? Let's start with the simple stuff: - What is the function's execution order? - What is the type of data a function expecting to receive? (table, column, scalar etc...) - What is the input/output data type a function gets/returns? (table, column, scalar etc...) - What is the input/output data a function gets/returns? Giving the fact that DAX is a functions languages - a strictly separated functions executions that simply calling each other.. Is this so hard for someone who knows the language's in-depth engine to put a break or some sort of a component between each execution that will read and output this kind of information?
We totally agree a debugger would be useful. What is complex is to think how to implement a debugger when a measure can be executed many times and in different context. A debugger based on Power BI visuals could be challenging, a debugger using a custom matrix to display the result could be more feasible. It's not easy to solve. One approach is to modify your code: www.sqlbi.com/tv/how-to-debug-a-dax-measure/ Another approach is to modify the query executed: thebipower.fr/index.php/2021/04/05/dax-debugger/ None of these techniques is perfect and a "true" debugger is far, at the moment. As of today, Tabular Editor 3 is the tool that more likely could have a debugger, because it already has a full parser that could cover several of the questions you made.
I'd say that mastering the fundamentals is the way to go in anything you want to get better at. DAX of course is not different, but I do agree that it is a teacher more cruel than average
DAX is not hard... it is hell :D having done C#, SQL, Python, R, even MDX... DAX is a strage beast. Thank you for the video. help alot. GWBASIC.. that is my first language. :)
What was the reason for Microsoft making this unintuitive language? They wanted to simplify everything but instead created a monster. SQL is an industry standard and a lot more simplier. Every imperative programming language has a debug option, and you can fix errors by debugging. DAX has no debug options, you have to keep in mind contexts, filters etc. If you are wrong in your assumptions nothing can help you.
SQL is not a composable language suitable for a semantic model. A fair comparison is between DAX and MDX. You can use SQL to create queries, but I've never seen a good way to create reusable measures in SQL, besides simple aggregations.
I'm not long starting in Power bi and am finding it hard to be able to naturally follow somebody else's DAX, let alone write much. Currently I do as much 'calculating' as I can in SQL before the data comes into the Power bi model. But I know I need to learn DAX because DAX is the key to being able to expand the number of questions that the end user can ask when they interact with the visuals you create, and only with DAX can you cleanly and in an efficient manner answer them. Frustrating but fun at the same time.
Thanks, really interesting and useful. Although for me the "click" came on its own, I was doing something else and suddenly I understood the "context transition" ... maybe it's the DAX that works like this 😀
Alberto at 17:40 you said something about making the code ALWAYS work and I tried to make this distinctcount work with any column I'd put in the matrix visual, but, that's no way to guarantee that right? In the end I wrote this code that works with Year: COUNTROWS( SUMMARIZE( Sales, Sales[CustomerKey], 'Date'[Year] ) ) For this kind of problem you need to summarize by the columns you're putting in the visual or am I missing something? I Thought of using isinscope but it wouldn't work as well.
Thanks for this video Alberto. Really appreciate your help in learning DAX. Just one question, do you think/know if Microsoft has any options other than DAX language for PowerBi because it is hard and might not click with lot of folks around the world? Any thoughts on this?
Hi Alberto, is this correct measure? Distinct Customers = SUMX( VALUES(Customers[Year]), CALCULATE(DISTINCTCOUNT(Customers[Customer])) ) Grazie mille per tutti i contenuti che fornisci 🙂
Hi Alberto I decided to take ofertę as PowerBI Developer and I really want to be DAX expert. I am after DAX mastering course and I made 1 year projekt of optimizing inventory in PL/SQL and PowerBI. After this I join company with Microsoft stack (on prem) solution but with SSRS and over 1 year I started to feel that PowerBI is for sure tool I want to be profesionally exposed to. What suggestion do you have if new project will be in the area if cybersecurity with app. 500 KPI. Thanks in advance.
It's feel difficult because most of peoples who learning dax is not coming from computer science student, but many from Management or Accountant student, or business consultant who know nothing about database. For example, concepts like entity, relationship (foreign key, primary key, one-to-many and many to many relationship), data normalization, dimension table, fact tabel is need to be able to create a good model in dax or power pivot.
This is true for any tool that manages a database, not just Power BI. Other tools don't have a language as powerful as DAX and they force the user to create a clean data model (perhaps, a single table - which is not flexible at all in data navigation). Just because DAX allows you to create complex formulas managing complex models, it doesn't mean it's a good idea.
Ciao Alberto! Greetings from Mexico, you mention the way to master Dax involves practice, practice, practice and then some more practice....yes I agree but whats the best source of drill excercises? I would be great to have dozens if not hundreds of increasingly complex DAX excercises to actually get that musscle pumping, thanks for any recomendation!
Hi Alberto! Is it the optimal way to achieve the proper result for distinct count of customers with summarize values in total with best performance? :) var vTable = SUMMARIZE( FactOnlineSales , Calednar[Year] , DimCustomer[CustomerKey] ) var Result = COUNTROWS( vTable ) return Result
This way you sum the customers over years. If it is what you want, fine. However, this calculation could be slow in certain reports and fast in others. See www.sqlbi.com/articles/analyzing-distinctcount-performance-in-dax/
Besides the Distinct Count of the Customers with the Sum of the Yearly Distinct Count game that you provided (17:00), can SQL BI provide other sample games that we can use to challenge our DAX skills? What SQL Server sample database are you using for the Distinct Count of the Customers with the Sum of the Yearly Distinct Count game?
We created customized versions of Contoso. We use the small versions in sample files for articles published on www.sqlbi.com The complete SQL Server databases in different sizes are available as part of the Mastering Tabular video course training material: www.sqlbi.com/p/mastering-tabular-video-course/
I don't think the problem lies with DAX; I believe that any coding language would be challenging if you are forced to write it in the Power BI formula bar.
Otherwise known as, how do we create an entirely unnecessary query language to replace SQL so that we can sell new products and services, now that the SQL market is saturated.
I don't think dax is a functional language. In a functional language, functions always return the same output given the same input. And this, precisely, is the reason why dax is so difficult for me, because given the same inputs to the functions, they return different outputs, according to the contexts.
Agreed, we should say that its syntax is that of a functional language, even though the language as a whole is not. By design, DAX works in different contexts, allowing you to write a measure that will work in any report. Without such a design, you would write one query for each report, which is not what DAX has been designed for.
I wrote a lot of DAX last four years, but I still come here and listen to Alberto whenever I struggle. If you work as a Power BI developer, you will have sleepless nights 😢 Like I do now. On my weekend, I am still trying to solve something that has become my nightmare. The worst part, there will be no one to help you because your case will always be too specific. However, after you solve the issue, you will find a better way, but it will be too late.
I rem jumping into a contract position and was pushed into Power BI, thought it would be similar to Tableau until I had to deal with DAX; and at the time I didn't quite understand (such concepts as...) why we need to used sum over sumx even though I understood the definition. Like you said it was a nightmare... but I'm glad I went thru it and will help me to prepare myself if I ever had to do it again. And yeah this guy in the video breaks it down really well!
Every time I watch a Video of SQLBI I feel like a living example of the Dunning Kruger effect...
Thank you for your Videos, they are a dwell of wisdom for me!
Alberto, this video was really helpful and encouraging! Thank you so much!
Sometimes I even think that I don’t know why the number is slow or incorrect but when I follow your advice “Slow down, take a deep breath, maybe a cup of coffee and write down the filter context and follow it through your code” the solution hits me in the head. And I’m like “Aha! That is it!”
Thank you again! You are awesome!
Thank you for this! I found that the addition of variables made a HUGE difference in making DAX easier.
Now we just a need debugger/step through execution
If DAX was easy, then Alberto would be really boring 😁
I met Dax a year back and I fully agree with your point and I started to follow your channel abt half year ago.Dax just like girl friend sometimes makes you smile and cry thanks for elaborate the Dax from fundamental level to help me gain the knowledge day after day
Loved youy girlfriend analogy! hahahah brilliant!!
Hi Alberto, thanks very much for your video. I agree with your point that DAX is not an easy language. I started studying DAX in 2019. I read the 1st edition of The Definitive Guide to Dax and Dax Patterns, which I couldn't get any points. Then I started reading the second edition of the books along with the video training. Still, some concepts I was struggling with, such as the way of CALCULATE working. Some of the formulas were working like magic; however, I didn't know the reason why. The reason why I didn't grasp DAX well, in my mind, was TRIAL AND ERROR. I didn't get the point of the four pillars, Evaluation Context, Iterator, Context Transition and Expandaned Table very well. When the formula didn't work, I tried to add CALCULATE between codes without reasoning the code. When I read the second edition 5 times, I started understanding the foundations of DAX and the logic behind it. Now it's the six times I read the book. Wish you and Marco all the best:)
Wow Tommy you made my day! Thanks for your comments I relate much with!
This video, as the others by Alberto and Marco, sheds a light on such a fascinating language. I'd say an "ACADEMIC light", because your teaching approach reminds of the best times of Computer Science Bachelor I lived in late 90s, at "Università La Sapienza" in Rome. Pure gold. I stick to your channel.
Este vídeo não só uma aula sobre DAX, é também uma lição de vida.
Hi Alberto, thanks for this video. It's very encouraging. I have started learning DAX by watching TH-cam videos 2 months ago, but soon I realized that it did not work. Currently I'm reading your book "The Definitive Guide to Dax and Dax Patterns" and I read some parts 2-3 times. I love the way you explain the fundamentals. Thank you so much.
Alberto, Complimenti, sei una risorsa Impressionante!
Grazie per quello che condividi e per come lo fai.
You guys always have been a landmark to get out of any DAX situation.
Alberto is so passionate about DAX! He inspires me to keep learning!
So glad I happened on this--needed to hear this today. I found a bad course on Udemy (not going to call anyone out here), and got very frustrated and discouraged that I couldn't apply any of it in my work. Then found the 2nd edition of the "Definitive Guide..." and I'm starting to get a sense how powerful it is, and for the same reason, why it's so hard to debug, and so easy to get wrong answers without knowing why. Also (best of all) that I'm not stupid, I just had bad teachers until now lol. :) Thanks for what you guys do. You make us cube farmers look good 💪.
Hey, "cube farmers" is a nice definition! Thanks!!
Wise words:
Alberto: Practice the fundamentals.
Alberto: Practice the fundamentals.
Alberto: "Did I said that?" -- > Practice the fundamentals.
😅👌
Love the chair example! Always something to gain in continually learning DAX. For me DAX is not easy due having to learn it as both a functional and query language.. add to that two contexts to juggle. You’re right understanding theory and practice is the only way. Two things that helped me.. learn on practice mini models that you control, and variables are your friend in building a solution.
I really think you both guys are the most intelligent living humans on earth. Thank you very much for your advice and your videos and courses, this video is very helpful, a masterpiece video!
Brilliant explanation, Alberto, -pure Brilliance ! Thanks !
Thanks to DAX to introduce Alberto and Marco... Great mentors...
16:30 to 16:40 is the best statement of the entire video ❤❤
Every person learning DAX needs to watch this!
Thanks, really important lesson that many woud rather dismiss, as you rightfully say. Having been myself from the basic, to C, to assembler, to PL, Pascal, to various dbms, like Clipper, -- Dax is the first language that invokes a strong association with the Hesse's Das Glassperlenspiel-- The Glassbeads Game. Like some complex, but beautiful music, notwithstanding it's seemingly simple "words"
Thanks Alberto. But another huge reason it's still hard is lack of effective and EFFICIENT debugging tool that will expose critical details regarding errors and mistakes. No matters the language, no programming language in 2021 is suppose to feel like trying to solve a rubik's cube. Of course once you understand the concept of solving the cube it's easy and of course you do want eventually to master it and reduce your dependency on debuggers. The question is how hard would it be to get to that point. The harder the challenge is the less people will be able to pass it. Unfortunately DAX is both hard and without a debugger tool - this increases the chance that more people will not be able to pass the challenge. In a result they will waste time, energy and in some cases money in a try to get there. If you ask me, without debugger capabilities it's 99% harder to master DAX.
The question is why nobody develops a convenient tool? Let's start with the simple stuff:
- What is the function's execution order?
- What is the type of data a function expecting to receive? (table, column, scalar etc...)
- What is the input/output data type a function gets/returns? (table, column, scalar etc...)
- What is the input/output data a function gets/returns?
Giving the fact that DAX is a functions languages - a strictly separated functions executions that simply calling each other.. Is this so hard for someone who knows the language's in-depth engine to put a break or some sort of a component between each execution that will read and output this kind of information?
We totally agree a debugger would be useful. What is complex is to think how to implement a debugger when a measure can be executed many times and in different context. A debugger based on Power BI visuals could be challenging, a debugger using a custom matrix to display the result could be more feasible.
It's not easy to solve.
One approach is to modify your code: www.sqlbi.com/tv/how-to-debug-a-dax-measure/
Another approach is to modify the query executed: thebipower.fr/index.php/2021/04/05/dax-debugger/
None of these techniques is perfect and a "true" debugger is far, at the moment. As of today, Tabular Editor 3 is the tool that more likely could have a debugger, because it already has a full parser that could cover several of the questions you made.
100% agree with you yoray
@SQLBI unfortunately it cost $100 monthly per user.
Thanks, Maestro Alberto . Your suggestions are priceless. I was afraid that you would forget saying "Enjoy DAX" in the end.
I'd say that mastering the fundamentals is the way to go in anything you want to get better at. DAX of course is not different, but I do agree that it is a teacher more cruel than average
you're always awesome when making tutorial video. Thanks in advance, Albert
DAX is not hard... it is hell :D
having done C#, SQL, Python, R, even MDX... DAX is a strage beast. Thank you for the video. help alot.
GWBASIC.. that is my first language. :)
DAX has unique concepts different from other programming and query languages. Once you know them, it's not a paradise, but definitely not hell! :)
Very informative. I really like the idea of focusing on fundamentals and not memorizing syntaxes. Thanks for this inspiring video.
Thanks, Alberto, All those answers make a lot sense.😊
Great, Alberto! Opened my mind. Thank you!
appreciate your sharing. this is super useful!
Fantastic video, very wise advise in all of it. Thanks so much for sharing your vast knowledge once again Mr. Ferrari !
Great Video. Specially for beginners.
Gracias, que consejos tan buenos
What you provide is simply outstanding. Thank you so much for providing content at such an exceptional level. Amazing.
Thanks Alberto! Valuable advices.. SUPERnecesary video 👍
Great explanation! Mainly about functional languages.
Thanks Alberto
What was the reason for Microsoft making this unintuitive language? They wanted to simplify everything but instead created a monster. SQL is an industry standard and a lot more simplier. Every imperative programming language has a debug option, and you can fix errors by debugging. DAX has no debug options, you have to keep in mind contexts, filters etc. If you are wrong in your assumptions nothing can help you.
SQL is not a composable language suitable for a semantic model. A fair comparison is between DAX and MDX. You can use SQL to create queries, but I've never seen a good way to create reusable measures in SQL, besides simple aggregations.
I'm not long starting in Power bi and am finding it hard to be able to naturally follow somebody else's DAX, let alone write much. Currently I do as much 'calculating' as I can in SQL before the data comes into the Power bi model. But I know I need to learn DAX because DAX is the key to being able to expand the number of questions that the end user can ask when they interact with the visuals you create, and only with DAX can you cleanly and in an efficient manner answer them. Frustrating but fun at the same time.
Thank you for this video... I'm not alone, after all!! :)
Really insightful. Thank you!
Thanks, really interesting and useful.
Although for me the "click" came on its own, I was doing something else and suddenly I understood the "context transition"
... maybe it's the DAX that works like this 😀
Too good explanation.
Alberto at 17:40 you said something about making the code ALWAYS work and I tried to make this distinctcount work with any column I'd put in the matrix visual, but, that's no way to guarantee that right? In the end I wrote this code that works with Year:
COUNTROWS(
SUMMARIZE(
Sales,
Sales[CustomerKey],
'Date'[Year]
)
)
For this kind of problem you need to summarize by the columns you're putting in the visual or am I missing something? I Thought of using isinscope but it wouldn't work as well.
Thanks for this video Alberto. Really appreciate your help in learning DAX.
Just one question, do you think/know if Microsoft has any options other than DAX language for PowerBi because it is hard and might not click with lot of folks around the world?
Any thoughts on this?
Great video.
Thank you.
Dax is not simple nor easy. I wish it to be an intuitive language like SQL. The only good thing about Dax is Alberto.
sometimes i think you are italian. another day finnish. anyway thanks for the presentation. terrific.
Hi Alberto, is this correct measure?
Distinct Customers =
SUMX(
VALUES(Customers[Year]),
CALCULATE(DISTINCTCOUNT(Customers[Customer]))
)
Grazie mille per tutti i contenuti che fornisci 🙂
Hi Alberto I decided to take ofertę as PowerBI Developer and I really want to be DAX expert. I am after DAX mastering course and I made 1 year projekt of optimizing inventory in PL/SQL and PowerBI. After this I join company with Microsoft stack (on prem) solution but with SSRS and over 1 year I started to feel that PowerBI is for sure tool I want to be profesionally exposed to. What suggestion do you have if new project will be in the area if cybersecurity with app. 500 KPI. Thanks in advance.
Also study the Tabular model and consider Tabular Editor for your productivity!
Thanks a lot, Dax is great
Thank you
very good Alberto. I really think dax hard.
It's feel difficult because most of peoples who learning dax is not coming from computer science student, but many from Management or Accountant student, or business consultant who know nothing about database. For example, concepts like entity, relationship (foreign key, primary key, one-to-many and many to many relationship), data normalization, dimension table, fact tabel is need to be able to create a good model in dax or power pivot.
This is true for any tool that manages a database, not just Power BI. Other tools don't have a language as powerful as DAX and they force the user to create a clean data model (perhaps, a single table - which is not flexible at all in data navigation). Just because DAX allows you to create complex formulas managing complex models, it doesn't mean it's a good idea.
Ciao Alberto! Greetings from Mexico, you mention the way to master Dax involves practice, practice, practice and then some more practice....yes I agree but whats the best source of drill excercises? I would be great to have dozens if not hundreds of increasingly complex DAX excercises to actually get that musscle pumping, thanks for any recomendation!
We have tens (not hundreds) of exercises in the Mastering DAX video course: www.sqlbi.com/p/mastering-dax-video-course/
Great video
Thank you
Hi Alberto! Is it the optimal way to achieve the proper result for distinct count of customers with summarize values in total with best performance? :)
var vTable =
SUMMARIZE(
FactOnlineSales
, Calednar[Year]
, DimCustomer[CustomerKey]
)
var Result =
COUNTROWS( vTable )
return
Result
This way you sum the customers over years. If it is what you want, fine. However, this calculation could be slow in certain reports and fast in others. See www.sqlbi.com/articles/analyzing-distinctcount-performance-in-dax/
Besides the Distinct Count of the Customers with the Sum of the Yearly Distinct Count game that you provided (17:00), can SQL BI provide other sample games that we can use to challenge our DAX skills? What SQL Server sample database are you using for the Distinct Count of the Customers with the Sum of the Yearly Distinct Count game?
We created customized versions of Contoso. We use the small versions in sample files for articles published on www.sqlbi.com
The complete SQL Server databases in different sizes are available as part of the Mastering Tabular video course training material: www.sqlbi.com/p/mastering-tabular-video-course/
Are there educational courses you offer on line ?
Yes, you can find our offer here: sqlbi.com/training
23:40- DAX studio
What is Alberto eating? He´s getting younger while all of us, older..... 🤯
You forgot to addcolumns, DAX is addictive.
I don't think the problem lies with DAX; I believe that any coding language would be challenging if you are forced to write it in the Power BI formula bar.
DAX is easy, CALCULATE makes DAX hard...
Otherwise known as, how do we create an entirely unnecessary query language to replace SQL so that we can sell new products and services, now that the SQL market is saturated.
I'm sorry you misinterpreted the video.
I don't think dax is a functional language. In a functional language, functions always return the same output given the same input. And this, precisely, is the reason why dax is so difficult for me, because given the same inputs to the functions, they return different outputs, according to the contexts.
Agreed, we should say that its syntax is that of a functional language, even though the language as a whole is not.
By design, DAX works in different contexts, allowing you to write a measure that will work in any report. Without such a design, you would write one query for each report, which is not what DAX has been designed for.
@@SQLBI Thanks for your reply.
Alberto: "...but still I really struggle with DAX..."
Me: "hmm, should I start learning DAX?"
Yes!
Definitely not easy
Too much talking.
😧
hahaha