Тёмный

DAX ALLSELECTED Function 

Goodly
Подписаться 97 тыс.
Просмотров 14 тыс.
50% 1

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

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 37   
@therealnucleus274
@therealnucleus274 Год назад
Hi Goodly, I'm only roughly a month into Power BI and DAX and you've already been a tremendous help with your videos. Thank you! I'm not a big fan of this particular video however, as I think the concept of ALLSELECTED() is not that difficult to understand, but you're making it quite complicated with your definition and the way you go at explaining it with the matrix. The definition I go by is: ALLSELECTED() provides the grand total for the externally (Slicer-) selected values of the (one or more) dimension column(s) specified in the ALLSELECTED() function, ignoring any filters for that/those dimension column(s) coming from the displaying visual. Or even better: ALLSELECTED() is simply the dynamic version of a hard coded dimension filter within CALCULATE(): i.e. = CALCULATE([Total Sales],ALLSELECTED('Article'[Color])) - with an external filter on [Color] selecting "red" and "blue" equals the non dynamic code: =CALCULATE([Total Sales], 'Article'[Color] in {"red",blue"}) ALLSELECTED() with more than one column or the entire table then wraps the specified columns or all the columns in the specified table in an AND() function. i.e. =CALCULATE([Total Sales], ALLSELECTED('Acticle'[Color]), 'Article'[Category])) - with an external filter on [Color] selecting "red" and "blue" and an external filter on [Category] selecting "Bikes" and "Safety Equipment" equals the non dynamic code: =CALCULATE([Total Sales], AND('Article'[Color] in {"red", ”blue"), 'Article'[Category] in {"Bikes", "Safety Equipment"})) Best TheRealNucleus
@suribhandari1985
@suribhandari1985 2 года назад
My All Selected is not working on two column. I am unable to retrieve intellisence for second column. Kindly assist.
@sbn4862
@sbn4862 Год назад
HI CHANDEEP What it meens -Last visiable shadow context filter? I understund it so. Last visable-A Column in the matrix as Catigory it's current context filter and the sliser it's a last context filter. Shadow context filter created by the sliser restoring current context filter. Or NOT?
@julie_chen
@julie_chen Месяц назад
Hope RU-vid pays for the several subsequent viewing time after the first one. ❤
@RameshK-rc5nv
@RameshK-rc5nv 3 года назад
Dear sir , I think either i am not getting or some issue. . Although what you explain is perfectly right but . .I think that the way you are interpreting shadow filter context is not correct . .Shadow filter context is specifically used when all selected is inside an iterator . . You are using shadow filter word loosely for both explicit and shadow filter . Also You have not covered the nuance of main trickey area of allselected that is all selected inside iterator or multiple iterator. .
@mahajanravish
@mahajanravish Год назад
So visible means on visual or on filter ???
@sonalijain9024
@sonalijain9024 Месяц назад
mind blowing explanation.
@CJ-jc8tn
@CJ-jc8tn 3 года назад
Superb explanation of this tricky DAX function. Love the different examples that clearly explain it step by step.
@JoyOFIndia
@JoyOFIndia 2 года назад
These videos are the bestes that i have found so far in youtube or anywhere ...thanks a lot for educating us in such a great way :)
@GoodlyChandeep
@GoodlyChandeep 2 года назад
Glad you like them!
@KiranKumar-xf2th
@KiranKumar-xf2th 3 года назад
ALLSELECTED FUNTION TAKES THE OUTER FILTER CONTEXT RATHER THAN THE INSIDE---ALBERTO ALLSELECTED FUNCTION TAKES THE CLOSEST FILTER CONTEXT ---GOODLY , I am confused now, Is my understanding correct?
@williamarthur4801
@williamarthur4801 2 года назад
Great video, I do think a lot of DAX functions are badly named, so; ALL ; returns a table of unique values and sees no filters, VALUES sees them all , but ALL-selected restores them, likewise Keepfilters is really enforcing an AND between internal and external. I think?????
@jacquelinelacan
@jacquelinelacan 3 года назад
Dude, you are not a hero but THE hero!
@GoodlyChandeep
@GoodlyChandeep 3 года назад
Big words.. thanks buddy!
@sandeepjami9119
@sandeepjami9119 4 года назад
Well explained mate.
@prabhatdass6184
@prabhatdass6184 4 года назад
Hi I want be expert on power bi ,just have etl understanding as of now. Which playlist I should start with of yours?
@husnabanu4370
@husnabanu4370 3 года назад
Hey have you explained ALL function in DAX if yes please share link as i cant find it
@cesarsaldana3429
@cesarsaldana3429 10 месяцев назад
The best explanation of the topic, on all of RU-vid.
@umangdbz
@umangdbz Год назад
Good Stuff
@GoodlyChandeep
@GoodlyChandeep Год назад
Glad you enjoyed!
@Shinupp
@Shinupp 3 года назад
Amazing...you explained it very well
@rohankandra1928
@rohankandra1928 3 года назад
Best Explanation Mann on RU-vid !!!
@noname-cu2xh
@noname-cu2xh 3 года назад
Keep up the good work. thanks
@usmantariq3634
@usmantariq3634 3 года назад
Thnx for ur efforts. I have an intriguing question with regards to "filter restoration". Marco/Alberto mention in one of their videos on ALLSELECTED that it restores filters from outside of visual hence, in our case here, year should not be filtering the data at all since its inside the visual(Matrix). Pls shed some light on this. Again gr8 work and keep helping us understand DAX :)
@GoodlyChandeep
@GoodlyChandeep 3 года назад
The specific example that Marco or Alberto discussed could have the scenario. I really need to see that video to clarify ALLSELECTED simply restores the values of the columns that you mention inside the function. Of course, the best way is to try it out yourself :)
@usmantariq3634
@usmantariq3634 3 года назад
@@GoodlyChandeep Thx for replying. My concern is when u say ALLSELECTED with NO parameter when used in CALCULATE restores all filters. However, as per Following description frm Alberto, it seems only filters from outside of current visual are restored which in your case is only category & color coming from slicers hence, why are date columns also restored. Following is a 4 min video from Alberto ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-UehWR5wWWEo.html
@riteshchawla10
@riteshchawla10 3 года назад
pls keep explanation simple
@jjohn108
@jjohn108 4 года назад
Loved it. Learnt a lot in terms of the working of function. Can you please do a video on SELECTEDVALUE & HASONEVALUE functions, please?
@GoodlyChandeep
@GoodlyChandeep 4 года назад
Selectedvalue is right here - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-tVpevJEq2sg.html
@jjohn108
@jjohn108 4 года назад
@@GoodlyChandeep Thank you :)
@niravdesai2399
@niravdesai2399 3 года назад
Video is God Sent 🙌🏻
@gFowmy
@gFowmy 4 года назад
You did a great job to explain one of the most complicated functions in DAX.
@GoodlyChandeep
@GoodlyChandeep 4 года назад
Thanks Man.. I am glad you found it helpful
@mohammed333suliman
@mohammed333suliman 3 года назад
Great explanation
@brianpaasch2665
@brianpaasch2665 2 года назад
Perfect! Thank you.
@GoodlyChandeep
@GoodlyChandeep 2 года назад
Glad you like it 😊
@sumitsaxena5314
@sumitsaxena5314 3 года назад
One of the best 17 minutes I have spent on DAX ever.. Thanks for explaining in such details
Далее
Using ALLEXCEPT vs ALL VALUES
13:35
Просмотров 55 тыс.
Context Transition in Power BI and Tricky Examples
15:06
Related and RelatedTable in DAX
8:48
Просмотров 57 тыс.
EARLIER Function in DAX
15:46
Просмотров 41 тыс.
Introducing ALLSELECTED in DAX
14:07
Просмотров 15 тыс.
Using KEEPFILTERS in DAX
14:22
Просмотров 27 тыс.
ALL vs ALLSelected in Power BI and DAX
10:18
Просмотров 11 тыс.