DAX for Power BI Part 5.1 - The Calculate, Filter and CalculateTable Functions

  Рет қаралды 13,059

WiseOwlTutorials

WiseOwlTutorials

Күн бұрын

Пікірлер: 48
@darenlim6467
@darenlim6467 10 ай бұрын
New version of Power BI is able to use OR across multiple columns. No need to use FILTER anymore. But good learning practise on understanding the use of FILTER function. Thank you.
@WiseOwlTutorials
@WiseOwlTutorials 10 ай бұрын
Indeed it is - Power BI and DAX videos become out of date so quickly!
@nikakalichava8012
@nikakalichava8012 Жыл бұрын
Finally I have time to continue the series. Thanks again, Mr. Owl!
@WiseOwlTutorials
@WiseOwlTutorials Жыл бұрын
Good to see you again Nika!
@jasonturingan3279
@jasonturingan3279 2 жыл бұрын
Thanks sir Andrew for all the tutorials in DAX. You are amazing. You really made it very simple to follow DAX. I hope you cover all the DAX function imbedded inside the CALCULATE function in your future videos.
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Thanks Jason, happy to hear that you've been enjoying the DAX series. More videos are on the way!
@samirmishra507
@samirmishra507 2 жыл бұрын
Thanks Andrew for this. Please make video on other Table Functions like Summarize, Cross join and union and others use
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Hi Samir! Yes, I will, those topics are on the list of DAX videos to create. Thanks for watching!
@christophmeirich5928
@christophmeirich5928 2 жыл бұрын
@@WiseOwlTutorials Thx in advance, Andrea!!!! Greetings from germany Christoph 👏 👏 👏 👏 👏
@padynz9869
@padynz9869 2 жыл бұрын
Great examples and Excellent Clarity. Thank you very much.
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
You're very welcome, thanks for watching!
@garrybye4415
@garrybye4415 2 жыл бұрын
Excellent video. You’ve made it all very simple to follow, thanks
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Thanks for watching!
@ItsWithinYou
@ItsWithinYou 2 жыл бұрын
Simple yet very effective! Many thanks for sharing this video!
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Thanks! Happy to hear you found it useful!
@siddharthrao3115
@siddharthrao3115 2 жыл бұрын
I like the accent more than the videos! Just Kidding XD Thank you for the fantastic content man!
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
😄 happy to hear that you enjoyed it, thanks for watching!
@syedashhar6334
@syedashhar6334 8 ай бұрын
Thanks for making such an awesome video! It covered all possible combination for Filters with Calculate. This video is a gem🔸🔸
@WiseOwlTutorials
@WiseOwlTutorials 7 ай бұрын
Thank you so much for the kind comments and for watching!
@stickercode
@stickercode 2 жыл бұрын
Mr. Gould, in the section of comparing colums in a filter expression, I managed to handle it without adding "filter" function by this code; // avgruntime of profitable movies = CALCULATE(AllMeasures[Avg runtime], Film[BoxOfficeDollars] > Film[BudgetDollars]) // It let me type this without any error warning and calculated the whole expression. I think it is because of an upgrade by powerBI.
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Yes, that's correct, DAX is frequently changing!
@jeetborooah
@jeetborooah 2 жыл бұрын
@@WiseOwlTutorials I believe that even the CALCULATE TABLE function has probably changed as well as the Avg profits/loss only formula works in calculate table function for me as shown below: Avg Profit Only = AVERAGEX( CALCULATETABLE( Film, not ISBLANK(Film[BoxOfficeDollars]), not ISBLANK(Film[BudgetDollars]), (Film[BoxOfficeDollars] > Film[BudgetDollars]) ), Film[BoxOfficeDollars] - Film[BudgetDollars] ) Thanks for the brilliant video and great work!
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
@@jeetborooah Yes, agreed!
@mePrafull
@mePrafull 9 ай бұрын
thank you very much for sharing the detailed explaination
@WiseOwlTutorials
@WiseOwlTutorials 9 ай бұрын
You're very welcome, thank you for watching!
@ellukayou
@ellukayou 2 жыл бұрын
A complete guide. Love it.
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Thanks Luciano!
@mePrafull
@mePrafull 9 ай бұрын
29:21 , in newer version of POwerBI CALCULATETABLE( Film , NOT ISBLANK(Film[BoxOfficeDollars]) , NOT ISBLANK(Film[BudgetDollars]) , Film[BoxOfficeDollars] > Film[BudgetDollars] ) the column references ( Film[BoxOfficeDollars] > Film[BudgetDollars]) are accepted
@WiseOwlTutorials
@WiseOwlTutorials 9 ай бұрын
Yes indeed!
@rajkumarrajan8059
@rajkumarrajan8059 Жыл бұрын
This is Legendary!!!!
@WiseOwlTutorials
@WiseOwlTutorials Жыл бұрын
Thanks!
@Coglitics
@Coglitics Жыл бұрын
Bravo!!!
@WiseOwlTutorials
@WiseOwlTutorials Жыл бұрын
Thanks!
@mohammedaltaf4877
@mohammedaltaf4877 17 күн бұрын
excellent
@WiseOwlTutorials
@WiseOwlTutorials Күн бұрын
Thank you!
@HaiderAli-vt8wn
@HaiderAli-vt8wn Жыл бұрын
Great stuff, membership icon and link not working , is it available in Pakistan?
@WiseOwlTutorials
@WiseOwlTutorials Жыл бұрын
Hello Haider! KZbin does not currently list Pakistan as an available location for channel memberships support.google.com/youtube/answer/7636690?hl=en-GB#zippy=%2Cavailability
@yousseflayechi8846
@yousseflayechi8846 8 ай бұрын
You can do this with sql or excel but why should we learn this ?
@TaiTran-ud2jh
@TaiTran-ud2jh 10 ай бұрын
I have a question why don't we use filter ( film, [avg run time] >120) but instead filter ( genre, [avg run time] >120) in 22:08
@WiseOwlTutorials
@WiseOwlTutorials 10 ай бұрын
Hi! Because we're interested in returning the genres where the average run time of all the films in the genre is greater than 120 - we need to evaluate the [Avg Run Time] measure for each row of the Genre table. Filtering the Film table would return a table of films where the run time is greater than 120. I hope that helps!
@PowerBILearner-c6d
@PowerBILearner-c6d 2 ай бұрын
@@WiseOwlTutorials Hi. Thank you for the explanation and the awesome videos. So, does this mean that, unlike in visual filters where filters only propagate from dimension tables to fact tables in a one-to-many relationships, with measures, like in this case, filters can propagate from the fact table (like Film) back to the dimension tables (like Genre) in one-to-many relationships?
@WiseOwlTutorials
@WiseOwlTutorials 2 ай бұрын
@@PowerBILearner-c6d Hi! The short answer is no 😀 If you want to modify the direction in which filters propagate in a measure, you can use the CROSSFILTER function (we cover that topic in this video kzbin.info/www/bejne/g5KbaHWkaZKnZ9kfeature=shared) In the example above, the FILTER function is evaluating a measure for each row of the Genre table and checking if the result of the measure is >120. It's not filtering rows of the Film table and then propagating the filter to the Genre table. Hope it helps!
@PowerBILearner-c6d
@PowerBILearner-c6d 2 ай бұрын
@@WiseOwlTutorials Hi again, Mr. Gould, and thank you for your prompt reply. I don't understand how it is possible to invoke the [Avg Run Time] measure for the Genre. The [Avg Run Time] measure in its internal code contains the field of Film[RunTimeMinutes], which field is not in the Genre table?
@_huinorman9487
@_huinorman9487 2 жыл бұрын
Can u do the fifo calculations in power bi?
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Try this community.powerbi.com/t5/Desktop/Using-FIFO-in-calculation/td-p/1124600
@learnenglishgeo6622
@learnenglishgeo6622 11 ай бұрын
how to get a member ?
@RobsondeAOliveira
@RobsondeAOliveira 2 жыл бұрын
Hi! Website certificate expired!
@WiseOwlTutorials
@WiseOwlTutorials 2 жыл бұрын
Indeed it has, thanks for the heads up Robson, I've informed the people responsible!
DAX for Power BI Part 5.2 - Removing Filters in Measures
26:52
WiseOwlTutorials
Рет қаралды 15 М.
DAX for Power BI Part 2.5 - Text in Calculated Columns
35:57
WiseOwlTutorials
Рет қаралды 12 М.
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 26 МЛН
小丑揭穿坏人的阴谋 #小丑 #天使 #shorts
00:35
好人小丑
Рет қаралды 39 МЛН
Yay, My Dad Is a Vending Machine! 🛍️😆 #funny #prank #comedy
00:17
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 275 #shorts
00:29
DAX for Power BI Part 6.1 - Introduction to Time Intelligence Functions
31:20
DAX for Power BI Part 2.1 - Basic Calculated Columns in DAX
33:25
WiseOwlTutorials
Рет қаралды 21 М.
DAX for Power BI Part 2.4 - Working with Blanks
19:43
WiseOwlTutorials
Рет қаралды 10 М.
DAX for Power BI Part 2.2 - The If Function
30:20
WiseOwlTutorials
Рет қаралды 14 М.
DAX for Power BI Part 6.2 - Comparing Date Ranges
37:45
WiseOwlTutorials
Рет қаралды 5 М.
DAX for Power BI Part 5.3 - Replacing and Keeping Filters in Measures
19:22
DAX for Power BI Part 3.1 - Relationships and the Related Function
25:55
WiseOwlTutorials
Рет қаралды 10 М.
DAX for Power BI Part 3.2 - The LookupValue Function
22:24
WiseOwlTutorials
Рет қаралды 9 М.
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 26 МЛН