Тёмный
No video :(

When are variables evaluated in DAX 

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

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

 

29 авг 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 41   
@ZiggyBoon
@ZiggyBoon Месяц назад
First of all: First!! Secondly, LEARNING that it's possible to create variables within an iterative calculation is very useful! I learn something from every SQLBI video I watch!
@druthorah
@druthorah Месяц назад
"Why variables are not named constants?" "Nobody knows" 😂
@gvitullib
@gvitullib Месяц назад
Great video. I thought I knew enough details about variables in DAX, but after watching this video, it's clear to me that there is always something more to learn.
@sameerdeshpande8239
@sameerdeshpande8239 Месяц назад
Thanks Alberto. Never knew could define and call variables in nested format!
@louism.4980
@louism.4980 28 дней назад
This is gold, thank you so much Alberto!
@cathrerinezetadrones3169
@cathrerinezetadrones3169 Месяц назад
I will never forget these examples!
@nevermore17011990
@nevermore17011990 Месяц назад
newbie to DAX, and this video is very helpful. please do more, i'm watching all of your videos. Tks Sir !
@TRZMac
@TRZMac Месяц назад
Hey Alberto, Thank you for this great video, as always, it was very informative and helpful! I wanted to ask if you could do a video about VAR in row context and how it replaces the EARLIER() function. I kind of understand how this works, but the concept is still a little vague to me. I would appreciate such a video a lot! ❤ Thanks a ton!
@krisihari
@krisihari Месяц назад
Very helpful video as always! Thanks!
@kaselchirman9911
@kaselchirman9911 Месяц назад
This was very insightful, thank you Alberto
@ngoduyvu
@ngoduyvu Месяц назад
Thanks for a great video as always
@jyrrin
@jyrrin 17 дней назад
Just curious: in Python, you can constantly redeclare a variable's constant within a block (if it's initialized as a constant). I know you could technically just replace the variable's value wherever it's declared in the DAX, but if for whatever reason I wanted to redeclare the variable (say 'VAR Discount = 0.85' on one line and then 'VAR Discount = 0.75'), would the second declaration override the first declaration in the same manner it would in Python? Thanks in advance!
@SQLBI
@SQLBI 17 дней назад
You can redeclare a variable in an inner scope - this way removing visibility from the outer scope - but you cannot assign a value to a variable after you defined it. A better name would have been CONST rather than VAR to be honest.
@TopnutritionCl
@TopnutritionCl Месяц назад
when i had that scenario i avoided the variables, because they gave me the wrong result. now i understand better how to use them
@timolff9239
@timolff9239 Месяц назад
Long awaited video for me
@santoshkulkarni902
@santoshkulkarni902 Месяц назад
Very nicely explained ❤
@GaryThomann-CoGC
@GaryThomann-CoGC Месяц назад
14:30 good point, variables (VAR) are constants
@thegreatlobu7422
@thegreatlobu7422 Месяц назад
At 17:40 wouldn't moving the AverageSales inside the iterator make it so that it calculates the average sales for that customer and not all customers?
@rapacov
@rapacov Месяц назад
It surprised me too. It looks like inner row context in SUMX overwrites the outer on same table Customers. But I've never heard about it before.
@fernandoguajardo6913
@fernandoguajardo6913 Месяц назад
If that was a measure or wrapped inside a CALCULATE yes, but as shown in the video it iterates the full Customer table inside the AVERAGE X function
@TRZMac
@TRZMac 20 дней назад
Hey @thegreatlobz7422, The answer to your question is NO this is not happening in this case because there is no CALCULATE() wrapping that AVERAGEX(), therefore AVERAGEX() created a new row context over customer and for each row of the previous row context it is returning the value of the row context created by AVERAGX(). Stick with me I will explain this better. the SUMX() created a row context over customer lets give this row context the number 1 so its easier to understand. then inside of that row context created by SUMX() another iterator was called without context transition so it created a new row context inside of the previous one created by SUMX() Lets give the row context created by AVERAGEX() the number 2, so now we have two row contexts, row context number 2 is computing an AVERAGEX calculation inside of its own row context, and because context transition was not called row context number 2 is not filtered in the row context number 1, therefore the row context created by sumx doesnt have the average pro customer it has the AVERAGE over all customers. If we were to wrap the AVERAGEX in that case with a calculate then it wouldnt work, but at the same time if we were to add a REMOVEFILTER(Customer) as a calcualte parameter then it will work again because then we are removing the effects of CONTEXT Transition filtering customers. I hope this was a good explanation.
@kennethstephani692
@kennethstephani692 Месяц назад
Terrific video!
@kot23
@kot23 Месяц назад
Hey Alberto, thank you for the great content. I have a question, are all those Variables evaluated in this scenario? Count = VAR _days = VALUES( Date[Date] ) VAR _weeks = VALUES( Date[WeekNo]) VAR _months = VALUES( Date[MonthNo]) VAR _result = SWITCH( SELECTEDVALUE( someColumn), "daily", COUNTROWS( _days), "weekly", COUNTROWS( _weekly), "monthly", COUNTROWS( _monthly) ) RETURN _result Don't bother with the logic of the measure, just for demo purposes
@SQLBI
@SQLBI Месяц назад
Yes.
@mwaltercpa
@mwaltercpa Месяц назад
Thanks Alberto, I like at 11:00 when you demo using the same nested var name Result to show that the inner hides the outer. Didn’t know that. Can you tell me if there is another benefit beyond showing the separate evaluation of the two? or as you said, to stick w the same return naming pattern? Thanks!
@SQLBI
@SQLBI Месяц назад
It's a debug technique: www.sqlbi.com/articles/debugging-dax-measures-in-power-bi/
@HebertAG
@HebertAG Месяц назад
So for time intelligence like SAMEPERIODLASTYEAR or DATEADD we should use the measure always instead of the Variable?
@drkamikaze1
@drkamikaze1 Месяц назад
Would it also be possible to use variables to create summarytable with filters and then apply rank on items in the sunmary table? I can't modify upstream data so all work has to be done with Power Query or Dax. I had somewhat limited success with calculated columns but cant apply a filter to a RANK
@dineshs9670
@dineshs9670 Месяц назад
The value of variables will be constant when used in calculated columns also ? I am using a column in my calculated column variable
@mabl4367
@mabl4367 Месяц назад
Why do you count the number of customers in the sales table and not the customer table? Is a customer without sales not a customer?
@SQLBI
@SQLBI Месяц назад
Usually in a report you want to see how many customers made purchases by date/product - we should call them "Active Customers in the current selection" but real estate in naming is very expensive so... "Customers" :)
@mabl4367
@mabl4367 Месяц назад
@@SQLBI I understand.
@vanlessing
@vanlessing Месяц назад
VAR == constant and =|= variable
@marcofestu
@marcofestu Месяц назад
The magister himself
@MrSparkefrostie
@MrSparkefrostie Месяц назад
I am very interested in how and why you would use error in the real world
@SQLBI
@SQLBI Месяц назад
An example is to stop a refresh using it in a calculated column or table when there is an issue in data.
@MrSparkefrostie
@MrSparkefrostie Месяц назад
@@SQLBI awesome thank you, I will look into this, didn't even occur to me
@MrSparkefrostie
@MrSparkefrostie Месяц назад
@@SQLBI seems my earlier comment got lost, but thank you, this is a brilliant idea
@mogarrett3045
@mogarrett3045 Месяц назад
excellent
Далее
Filter context in DAX explained visually
24:40
Просмотров 21 тыс.
Row Context in DAX
20:42
Просмотров 97 тыс.
Does Your UI Pass The "Moron in a Hurry" Test?
9:02
Просмотров 10 тыс.
25 Nooby Pandas Coding Mistakes You Should NEVER make.
11:30
Don't Use Polly in .NET Directly. Use this instead!
14:58
Understanding context transition
18:25
Просмотров 67 тыс.
Best practices for using KEEPFILTERS in DAX
28:24
Просмотров 10 тыс.
Wait... PostgreSQL can do WHAT?
20:33
Просмотров 194 тыс.
Solving errors in CALCULATE filter arguments
30:55
Просмотров 28 тыс.