Тёмный

Using GENERATE and ROW instead of ADDCOLUMNS in DAX 

SQLBI
Подписаться 109 тыс.
Просмотров 28 тыс.
50% 1

Improve DAX queries by using GENERATE and ROW instead of ADDCOLUMNS when you create table expressions.
Article and video: sql.bi/54337?a...
How to learn DAX: www.sqlbi.com/...
The definitive guide to DAX: www.sqlbi.com/...

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 47   
@BernatAgulloRosello
@BernatAgulloRosello 3 года назад
When I grow up I want to be like Alberto Ferrari 😁
@ЕвгенийСкляров-б3ч
Simply brilliant. As always, by the way. Thanks a lot.
@tonirapture6440
@tonirapture6440 3 года назад
Hi Alberto/SqlBi Team, I love how you explain things and make this understandable to us newbies in dax. Ive been watching sqlbi tutorials for the past 2 months now and it helps me a lot with my builds. Great stuff as usual! Appreciate you guys effort on sharing your knowledge. By the way, is it possible to do ranking function in the RETURN ROW columns?
@AnalyticswithNags
@AnalyticswithNags 3 года назад
This is crystal clear explanation. One thing I have in mind for long is that this script basically creating a calculated table using DAX and same thing can be achieved in power query editor as well. So, which one better interns of performance and when to choose power query or DAX to create calculated table.
@SQLBI
@SQLBI 3 года назад
It depends. If you only have row-level calculations that don't depend on reading/aggregating data on other tables, Power Query is an option (if you are building a Power BI model). However, with composite models coming soon, the scenario could be very different (calculated table based on a remote dataset - you cannot use Power Query in this case).
@DesertTOON
@DesertTOON 3 года назад
Being able to read my code after weekend is hard enough let alone 6 months! Great content BTW
@gulhermepereira249
@gulhermepereira249 3 года назад
0:35 "some other people will work on it" = yourself the next morning
@questionsformedb8157
@questionsformedb8157 3 года назад
This is beautiful
@MrKarimanal
@MrKarimanal Год назад
You are my man
@pratikfutane8131
@pratikfutane8131 8 месяцев назад
Great video filled with best practices !! Thank you!
@就已
@就已 Год назад
awesome
@marilenadonofrio9787
@marilenadonofrio9787 2 года назад
Wow! now I'll pick up and rethink in this way all the code I've written so far...
@excelisfun3903
@excelisfun3903 3 года назад
Thanks, Alberto, for the VERY helpful video : ) : )
@HeliSal700
@HeliSal700 3 года назад
Nice approach. I will look at it as it next time. In addition you could have mention comments inside the code to describe what happens. I always recommend comments to my customers and my students, as they help to understand what's happening and why I have written the code in that way.
@SQLBI
@SQLBI 3 года назад
Completely agree, this is what we usually do - However, in videos we have different requirements, like using larger fonts to keep code visible, so we might have to skip comments there. The code is at the service of the explanation in the video.
@maheshk6916
@maheshk6916 2 года назад
Explaining nicely like teaching alphabet to a kid
@joaquimcosta952
@joaquimcosta952 3 года назад
Very very good like always !!!! Thanks for another good material.
@vivekgupta309
@vivekgupta309 2 года назад
all your video series are very good. thanks a lot !!!
@Bharath_PBI
@Bharath_PBI 3 года назад
Thank you. Great work as usual. Enjoying DAX 👍
@NirRobinson
@NirRobinson 3 года назад
Great video. Everyone must be open to make changes in the model..
@anthonypcheng3167
@anthonypcheng3167 3 года назад
One of the best tip of DAX function/code. Cool. Love it.
@aleksanderstrommer7677
@aleksanderstrommer7677 3 года назад
Enjoying to the bone
@diegomex85
@diegomex85 3 года назад
Ty Guys =)
@xushuo1987
@xushuo1987 3 года назад
Video around 7:36, should line 7 be ADDCOLUMNS instead of SELECTCOLUMNS?
@SQLBI
@SQLBI 3 года назад
SELECTCOLUMNS is right, it is part of the explanation about how to customize the column names (see line 5).
@xushuo1987
@xushuo1987 3 года назад
@@SQLBI I see. I didn't see Line 9 which selected the [Date] column again. I thought it's an ADDCOLUMN behavior which adds bunch of columns like Year Month information to the original one-column table variable RenamedCalendar. Is there a special reason for using SELECTCOLUMNS at Line7 instead of using ADDCOLUMNS and starting from adding "Year","Month" to that variable?
@shekharkumardas
@shekharkumardas 3 года назад
Thanks for great explanation
@sundarun
@sundarun 3 года назад
Fantastic Alberto👏🏾
@sachin.tandon
@sachin.tandon 3 года назад
Very, very well explained!
@sessionel
@sessionel 3 года назад
What if my fiscal year ends in June ? How I am going to proceed with my DAX query in order to capture Years and Quarters accordingly when I'm generating the Fiscal Years and Fiscal Quarters columns ? Thank you.
@SQLBI
@SQLBI 3 года назад
There are many examples on DAX Patterns: www.daxpatterns.com/time-patterns/
@luuminhvuong
@luuminhvuong 2 года назад
can we apply this for Composite Model
@jarrelldunson
@jarrelldunson 2 года назад
Question... when I use generate, the year is a number, so PowerBi automatically converts to a measure and summarized it. How can I convert it to a Dimension?
@SQLBI
@SQLBI 2 года назад
You can use CONVERT: dax.guide/convert/
@soy34mb
@soy34mb 3 года назад
Hi, great video as always. Thanks!. How much was improve the efficiency of addcolumns vs generate+row??
@SQLBI
@SQLBI 3 года назад
As usual... it depends! It's always hard to set a general rule. As a rule of thumb, use GENERATE+ROW for complex dependencies that would add too many nested ADDCOLUMNS. If performance is critical, run your own benchmark, otherwise use the technique that is easier to read.
@picious
@picious 3 года назад
Documentation is needed either way.. just having clean code is not enough in my opinion. Having documentation (at least a process defined) in parallel is the best practice. Agree? Any tips for documentation?
@SQLBI
@SQLBI 3 года назад
Yes, but the reality is that this doesn't happen all the times. The reality is that getting used to write code that speaks by itself is easier and more effective rather than inserting two lines of comment for every line of code. Documentation at the beginning of a block should describe the general approach (we are talking about code comments, not functional documentation here). Micro-documenting every line of code could be overwhelming - and the risk is that it's not maintained over time, leaving inconsistency between code and comments. Having both (good documentation AND good code with good naming) is the best of the two worlds, of course!
@picious
@picious 3 года назад
@@SQLBI thank your for your reply
@DanielADamico
@DanielADamico 3 года назад
Excellent video again! I have one doubt though: Is "Generate" better than the other approaches from a performance point of view? Or the real advantage is really on the readability and code maintenance side of things?
@SQLBI
@SQLBI 3 года назад
When it comes to performance, the answer is always "it depends". Read similar questions we just replied to in this video. Short version: too many nested ADDCOLUMNS are not a good idea. GENERATE for a couple of columns to add without dependencies between them could be a bad idea, too. However, give priority to code readability, then look at performance running your own benchmark, performance may vary and depend on many other factors.
@DanielADamico
@DanielADamico 3 года назад
@@SQLBI Thank you so much!
@alirezamogharabi8733
@alirezamogharabi8733 3 года назад
Thanks a lot, I have a question: Date fields in other calendars like Hijri or Persian dates doesn't show in correct format in the reports. How to fix this issue?
@SQLBI
@SQLBI 3 года назад
We don't have experience on that. Can you point to (possible English) documentation about these issues so we can investigate? Thanks!
@alirezamogharabi8733
@alirezamogharabi8733 3 года назад
@@SQLBI Yes, I will send you a comprehensive document about this issue.
@SQLBI
@SQLBI 3 года назад
Thanks!
@alirezamogharabi8733
@alirezamogharabi8733 3 года назад
@@SQLBI 🙏🌹
Далее
Row context in DAX explained visually
21:45
Просмотров 15 тыс.
When to use KEEPFILTERS over iterators
18:56
Просмотров 48 тыс.
Как открыть багажник?
00:36
Просмотров 14 тыс.
Вопрос Ребром - Серго
43:16
Просмотров 738 тыс.
Ко мне подкатил бармен
00:58
Просмотров 186 тыс.
Creating custom visuals in Power BI with DAX
35:04
Просмотров 15 тыс.
Using join functions in DAX
40:30
Просмотров 11 тыс.
Oh my...! You DIDN'T KNOW this about WEEKS?!
15:30
Просмотров 58 тыс.
How to Use ADDCOLUMNS in DAX
20:27
Просмотров 5 тыс.
Filter columns, not tables, in DAX
20:37
Просмотров 12 тыс.
DAX Fridays! #145: SUMMARIZECOLUMS
11:15
Просмотров 41 тыс.
Как открыть багажник?
00:36
Просмотров 14 тыс.