Тёмный

DAX Fridays! #78: When should I use FILTER() with CALCULATE? 

Curbal
Подписаться 138 тыс.
Просмотров 147 тыс.
50% 1

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

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 219   
@frankgovers8420
@frankgovers8420 6 лет назад
Great ruth, I am also filering the fish (first slide 😂)
@CurbalEN
@CurbalEN 6 лет назад
😂😂 Fun noise right? Diving Deep into DAX, i thought it was appropiate ;) /Ruth
@frankgovers8420
@frankgovers8420 6 лет назад
Hi Ruth, calculate with own filter ( not function) is same as calulate with function filter and function All.
@CurbalEN
@CurbalEN 6 лет назад
True, i should have Said that, shouldnt I? Pin your post for visibility :) /Ruth
@jimmywen1041
@jimmywen1041 5 лет назад
My favorite DAX instructor on youtube!
@CurbalEN
@CurbalEN 5 лет назад
Yey!!! Thanks 😊 /Ruth
@RonaldPostelmans
@RonaldPostelmans 2 года назад
Nice video, i found it weard that calculate when not using FILTER, does not filter the result when using a filter visualization
@saqeefavorites
@saqeefavorites Месяц назад
Hi, I have a question regarding this expression... Salaries over 10k = CALCULATE ( [No Employees], FILTER(Employee, [Tot salaries] > 1000 )) >>>>> is there any way to make "1000" dynamic ? for eg. by using measure linked with dropdown? or range?
@drwinn100
@drwinn100 4 года назад
Can anyone help me with this measure please? This measure returns a result: *Survey Completed = CALCULATE(COUNTROWS(vwSurveyResultsSubBU),FILTER(vwSurveyResultsSubBU,vwSurveyResultsSubBU[Question]="chat wait time")) This one returns "blank" *Survey Completed = CALCULATE(COUNTROWS(vwSurveyResultsSubBU),FILTER(vwSurveyResultsSubBU,vwSurveyResultsSubBU[Question]="Advisor Satisfaction"))
2 года назад
Ok, somehow i will learn how to use CALCULATE function, but tell me please, how did you know i am watching this video on friday 😁
@vegetagoku69
@vegetagoku69 4 года назад
How can I filter all except 2 countries for example, I know that you can do it with "", but only for 1, but if I want all except those 2 countries it would be like for example: calculate(sum(values);filter(tablename;table[country]"China" and "Us"))??, something like that, please help, thank you.
@FaiyazKhairaz-Aonlinetraining
@FaiyazKhairaz-Aonlinetraining 6 лет назад
Dear Ruth, When we say, the filter argument, which is within the calculate, has to return a Number Text Date And can not return a Table. But, suppose I filter, where dept="sales" Won't I get an entire Table, in return, where the dept="sales" Thanks
@avalondsouza2002
@avalondsouza2002 6 лет назад
I think what she was saying is that the Calculate function (not the filter) has to return a number, text or date. Filter arguments in a Calculate function can be the following: 1. Boolean condition (Ex: [dept]="sales') 2. A one column table (Ex: ALL(DeptTable[dept])) 3. All rows for one table (Ex: FILTER(ALL(DeptTable), [dept]="sales"))
@CurbalEN
@CurbalEN 6 лет назад
Thanks for replying, I completely missed this comment! /Ruth
@FaiyazKhairaz-Aonlinetraining
@FaiyazKhairaz-Aonlinetraining 6 лет назад
Thanks. Appreciated
@Oprimaita
@Oprimaita 4 года назад
I’ve watched many of yours and each time, I’ve learned a lot. Thanks a lot sincerely !
@magnusvangekjrchristensen1996
@magnusvangekjrchristensen1996 2 года назад
Your videos are really helpful and informative, Ruth! The way you use examples to demonstrate differences in these hard-to-grasp concepts is simply remarkable. Thank you from a great fan of yours :-)
@vashisht1
@vashisht1 Год назад
Ruth, I tried this with VAR I was getting error. Just try replacing all filter with Variable.
@powershah
@powershah 6 лет назад
Many thanks for providing useful information and clarifying the concepts.
@CurbalEN
@CurbalEN 6 лет назад
You welcome and hope it helps you further in your understanding! /Ruth
@lionels839
@lionels839 Год назад
Hi, you say the filters cannot return a table but FILTER function returns a table…I am confused
@nathanvessels2323
@nathanvessels2323 3 года назад
what if I have a table where each Customer ID has a record of everything they purchased in a given month. I want to measure the revenue of users in August, that do not have a record in September. Anyone have any idea here?
@elbezz
@elbezz 4 года назад
Thank you Ruth, very good explanation, ,,,,,, if we want to see the same behavior as the calculate function in the filter function (Ignoring the filter context) we add the ALL function, and this is how the calculate filter internally work::: Salaries Pending w filterALL = CALCULATE([No Employees], FILTER(ALL(Employee),Employee[Status]="Terminated"), FILTER(ALL(Employee), Employee[Dept.]="LA"))
@nishantpushkar4415
@nishantpushkar4415 4 года назад
Hi, I am writing the same Dax in visual studio, making a Tabular model cube, but I am getting the error. Servers:=CALCULATE([CompTCt],FILTER(ADComputerInfo,ADComputerInfo[ComputerType] ="Servers"||ADComputerInfo, ADComputerInfo[ComputerType] ="DomainControllers"))
@nishantpushkar4415
@nishantpushkar4415 4 года назад
Please help !!!!
@bswethar
@bswethar 2 года назад
Can anyone explain what calculation you have in No Employees column? is that an Employee Id that you have ?
@javedhassansheik903
@javedhassansheik903 7 месяцев назад
is the first argument in the filter function is the table on which the measure in the filter is calculated?
@lenalzheng
@lenalzheng 3 года назад
How about if I want to create a measure that returns names of employees with pending status?
@willyms
@willyms 6 лет назад
That's soooo cute the way you explain things! Thanks for your vids Ruth. Cheers
@CurbalEN
@CurbalEN 6 лет назад
😂 cheers Willian! /Ruth
@maxandersson6472
@maxandersson6472 2 года назад
How do I filter with wildcards (SQL 'like') ?
@devidodge
@devidodge 6 лет назад
Hi Curbal, how do I use calculate to compare 1 value against the whole table? eg, an agent score (filtered at page level) against all agents in the table. table(sales) structure looks like this: AgentID, Score, DeptID, TeamID
@CurbalEN
@CurbalEN 6 лет назад
Hi Raks, can you post the question in the power bi community? Make sure you post some sample data too! /Ruth
@kepstein8888
@kepstein8888 5 лет назад
Starts at 1:35
@mspatils
@mspatils 4 года назад
You can use measures inside calculate function
@Maali247
@Maali247 3 года назад
Hi Ruth, would you be so kind as to share a link to where you got your T-shirt from. I just love that t-shirt :)
@CurbalEN
@CurbalEN 3 года назад
I got it as a gift
@FaiyazKhairaz-Aonlinetraining
@FaiyazKhairaz-Aonlinetraining 6 лет назад
Dear Ruth, Thank you very much for the wonderful tutorials you have on DAX, really appreciated. I need some help :) I need a little more explanation of using slicers with Calculate Function and Filter Function. In this video, which you used the slicer, the function, which did not have the filter function, did not listen to the slicer, and the function which had the filter function did. However, i have another file, in which, when i user a calculate function (without a filter function within) and use a slicer, it works, I mean, the slicer does affect the output. for Example: Calculate Red Sales = CALCULATE( [Total Sales], 'Product'[Color]="red" ) f_Calculate Red Sales = CALCULATE( [Total Sales], FILTER('Product','Product'[Color]="red") ) When I used the slicer on Product Category, both of them changed to give me the same output. So, if you could give me an example of using Calculate, FIlter With Slicers, would really really appreciate, or if there is a video which explains the same. I also, checked the other calculate video's but did not get the answer to my question. Thank you very much for the wonderful work done. Best Wishes
@FaiyazKhairaz-Aonlinetraining
@FaiyazKhairaz-Aonlinetraining 6 лет назад
Ruth, :)) I think I got the answer. If I filter on the basis of a column, which has been used in the dax, that specific filter will get ignored, since the filter mentioned in the calculate will override it But, if I filter on another column, which is not mentioned in our DAX formula, that will be accepted. This example, is given under the CALCULATE video. Have i got the explanation correct ? { Thanks Again }
@CurbalEN
@CurbalEN 6 лет назад
Have you seen this video? :) /Ruth
@FaiyazKhairaz-Aonlinetraining
@FaiyazKhairaz-Aonlinetraining 6 лет назад
Dear Ruth, Thank you for your prompt reply. Yes, indeed i saw the tutorial. Then after watching and practising 2-3 times, it worked. My query is resolved. ( I think while writing the entire msg to, it clicked what was going wrong) Thank you for the amazing tutorials and explanation. Keep up the amazing work. :))
@CurbalEN
@CurbalEN 6 лет назад
Best way to learn!! :) /Ruth
@FaiyazKhairaz-Aonlinetraining
@FaiyazKhairaz-Aonlinetraining 6 лет назад
:)
@visalatchy_IT
@visalatchy_IT 2 года назад
=') this very useful helpful. thanks
@kenanjaddeny4978
@kenanjaddeny4978 4 года назад
Thanks for this video, a small clarification obout CALCULATE with Booleans; (more than one column in Boolean) Conditions of (> >= < = CALCULATE (expression; FILTER (table; AND(ALL(Boolean column1); ALL (Boolean column2))) because The filter arguments of CALCULATE (from the second parameter onward) are evaluated in the original filter context. according to that, CALCULATE + Boolean (column) = CALCULATE ( FILTER ( ALL (‘Table’[column]) ) ) Hope this helps, Regards!
@abdulqadeerkamangar6279
@abdulqadeerkamangar6279 3 года назад
How can we do that to get top 5 salarys based on status and location of table
@erinfield1943
@erinfield1943 Месяц назад
Ruth, what if I don't want it to do an actual calculation- I just want it to return the contents of the rows. How do I get the CONTENTS to show up?
@CurbalEN
@CurbalEN Месяц назад
Check the 25 days of dax challenge. Plenty of examples there that hopefully cover your case too: curbal.com/25-days-of-dax-fridays-challenge-ed1-northwind-company
@erinfield1943
@erinfield1943 Месяц назад
@@CurbalEN actually, I found a better one of yours- "Previous row in DAX non-accumulated values". Thanks!
@agelee89
@agelee89 Год назад
I would like to add that when you need to combine filter expression + USERELATIONSHIP you mostly need to use version without FILTER, otherwise your measure will return null.
@Victor-ol1lo
@Victor-ol1lo 6 лет назад
Thanks for the great video Ruth !! My marker was always: FILTER filters the table behind the scenes and CALCULATE overwrites it. Have a great weekend !
@CurbalEN
@CurbalEN 6 лет назад
Great tip!! Pinned för visibility. And happy Friday :) /Ruth
@uniQue_XL
@uniQue_XL 6 лет назад
Hi Ruth Thanks for the great video! Is there a way to present the Tables (and charts) in Right to Left view? Could not find any info. For the right to left lengugages. Such as Hebrew or Arabic. Will Happy to read your answer. Thanks!
@CurbalEN
@CurbalEN 6 лет назад
Hi! According to this: ideas.powerbi.com/forums/265200-power-bi-ideas/suggestions/8267295-right-to-left-chart-and-dashboards-supports It is already done, but for what I can see on google it is not supported yet. Your best bet? Vote on the ideas.powerbi.com and promote so others vote too. Happy Friday! /Ruth
@uniQue_XL
@uniQue_XL 6 лет назад
Curbal Thanks a lot! Have a great weekend😎
@CurbalEN
@CurbalEN 6 лет назад
Same to you :) /Ruth
@bopanamedaiah3057
@bopanamedaiah3057 4 года назад
Hi, I am trying to generate previous month sales in a matrix view. When I use PMSales = CALCULATE([TotalSales],FILTER(Datestable,DATEADD(Datestable[Date],-1,MONTH))) I can see current month values only. However when I use PMSales = CALCULATE([TotalSales],DATEADD(Datestable[Date],-1,MONTH)) it displays the previous month sales. What is the difference between the two measures??
@radhakrishnandapkara5505
@radhakrishnandapkara5505 5 лет назад
Hello, big fans of your lectures thanks i am facing one issue where my client want to display last 5 finacial qaurters including current quarter. their financial commence from feb to jan so if current fy quaerter is 2020 Q3 the. data in table should be for 2020 Q3, 2020 Q2, 2020 Q1, 2019 Q4 , 2019 Q3 and corresponding measure in table can you please help me with this or if you have uploaded any video for such scenario plz let me know Thank you
@nandkumar9954
@nandkumar9954 4 года назад
Hi there, very informative, Have one concern. What if I want to use OR function in Filter? in above example we have used 2 filters, 'Status; AND 'Department' . Which mean we are indirectly using AND function using 2 filters. What if I want to use OR... For example , Status is Pending OR Terminated.. How should I get these details thank you
@Ravi-rl8tt
@Ravi-rl8tt 6 месяцев назад
It’s Saturday for me when I’m watching this
@CurbalEN
@CurbalEN 6 месяцев назад
Well done!
@riverdreams9510
@riverdreams9510 5 лет назад
Hi, just curious. Can you create a slicer that filters 2 values? Lets say I have a STAtus column with 0,1,2 data. My slicer says Active, Pending, Inactive. When i select Active it should select all 2 and 1 status. When i select Pending it should filter all 1 status. When i select Inactive it filters all 0 status. Thanks
@MicahandModesta
@MicahandModesta 6 лет назад
Oh yay! I think that might have been my question :). Thank you!
@CurbalEN
@CurbalEN 6 лет назад
Yes it was! I couldn’t find you in the comments again, search on YT is not the best oddly enough.. Hope I manage to answer your question! /Ruth
@felipesepulvedaalbornoz6479
@felipesepulvedaalbornoz6479 4 года назад
Hi Ruth!, thanks for all your videos!! I have a doubt, can i use a wildcard when i use calculate ?? something like "pend*" when i want to filter all the words that start with "pend"? Saludos! Arica-Chile :)
@JonGSmith
@JonGSmith 5 лет назад
Hi Ruth! Many thanks for the explanation of the Filter function. I tried to apply it by excluding the zeros in the median. However this does not work: Median= CALCULATE(Median(TableName[SaleAmount]), FILTER(TableName, TableName[SaleAmount] 0 )) . It always says that there are too many arguments. Do you have any idea why? Many thanks for your help in advanced
@adamowiczjacek6543
@adamowiczjacek6543 4 года назад
Great Ruth! :) Is is possible to count No Emploees where Tot Salaries is greater then 15000? Ho to do it? Regards
@LuckyK
@LuckyK 5 лет назад
Great. one question. Does FILTER also ignores Report/Page level filters?
@enzonicolasandovalfiori8961
@enzonicolasandovalfiori8961 4 года назад
Hola Ruth, que tal tengo un par de consultas con respecto al objeto Matrix de Power BI , quería saber si puedes: - Darle formato a cada uno de los encabezados de forma independiente: Cambiar el color de fondo o el color de fuente - Solo habilitar la opción de icono +/- solo para algunos encabezados. Muchas Gracias por la ayuda
@theciscomanser
@theciscomanser 3 года назад
Is it possible to divide a column obtained with the calculate function by the Summarized total of the same column?
@ROCIODELPILARALIAGAISLA
@ROCIODELPILARALIAGAISLA 4 года назад
Interesting !!! Ruth I would like to know if it is possible to use a filter for specific tables in the dashboard/report?
@FlareSoul69
@FlareSoul69 5 лет назад
Can you make a video on how to filter a specific column from a multicolumn table or the opposite not making that specific column change when filter is applied. Thanks
@MegaAsher007
@MegaAsher007 5 лет назад
Hey Ruth if we want to calculate a value based on dept for example what is the salary paid for MES dept how can we do that using a measure.
@CurbalEN
@CurbalEN 5 лет назад
Hi! Could you post in the power bi community? Make sure you give as many details as possible to get help quickly! /Ruth
@kenanjaddeny4978
@kenanjaddeny4978 4 года назад
SumDept = SUMX ( FILTER ('Table' ; 'Table' [Dept] = "MES"); 'Table'[SalariesAmounts] )
@Phoenixspin
@Phoenixspin 6 лет назад
Ruth is the Truth.
@CurbalEN
@CurbalEN 6 лет назад
🤔.... With capital T? ;) /Ruth
@Phoenixspin
@Phoenixspin 6 лет назад
Yes, you are most deserving of the capitalized "T".
@CurbalEN
@CurbalEN 6 лет назад
Thank you :) Overjoyed that you find my videos so useful! /Ruth
@thegrilow
@thegrilow 6 лет назад
That’s a very important concept! Good work!
@CurbalEN
@CurbalEN 6 лет назад
Thanks for the feedback! /Ruth
@melainetape
@melainetape 4 года назад
Very useful video! Is it possible to have the link of the dax function page you share in this video
@giri41
@giri41 4 года назад
Hi Need help with dates in different tables . If the campaign date greater than order date .. sum of sales otherwise blank
@gerardreid4825
@gerardreid4825 3 года назад
Thank you, that cleared a muddy understanding of calculated worked for me.
@sergiobrandaoneto3827
@sergiobrandaoneto3827 4 года назад
How can I do if I need a measure that lets me filter by measure? I have a measure that needs to be a measure because is dynamic depending on parameter. Now i want calculate the count of values > 0 for that measure and i cant figure it out I need it to be a measure because i then use that total count for other calculations.
@harish7548
@harish7548 4 года назад
The way you pronounce your name ...loved it really loved that accent😀😎
@parisaayazi8886
@parisaayazi8886 3 года назад
Great as alway, Thanks
@IvanXe7
@IvanXe7 6 лет назад
Muy buuen tutorial, gracias Ruth
@CurbalEN
@CurbalEN 6 лет назад
Gracias Ivan!! :) /Ruth
@midsummer4864
@midsummer4864 3 года назад
Thank you very much
@walidkhlil2872
@walidkhlil2872 4 года назад
Great and easy way ,thansk
@anirbankar2010
@anirbankar2010 6 лет назад
Hi, thank you very much for these series of videos, I am learning a lot indeed. Requesting one small URGENT HELP from you today. If you kindly help me by replying that would be truly helpful for me. Dax formula in Power BI --> Salaries Pending = CALCULATE([No Employees]), Employee[Status]="Pending", Employee[Dept.]="LA") ### My question: How to exactly write this formula if the "Status" column values in each row contains not just the word "pending", instead it contains phrases like "pending for Jan" or "Feb salary pending for employee"? In other words using this formula how can I count rows those will match criterias even though word "pending" or word "Terminated" will be inside a phrase in some rows instead of a single word? Should I use wildcard characters like * ? Could you please urgently help me with the your kind suggestion and correct formula to achieve my requirement by tomorrow (Monday 21-may-2018)? I requesting because your kind little help me in my project a big way. Hope to receive your kindness and help urgently. Thank you.
@CurbalEN
@CurbalEN 6 лет назад
Hi! Maybe this will help you: m.ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-vbQbQBX2T8A.html&vl=en /Ruth
@anirbankar2010
@anirbankar2010 6 лет назад
Yes Mam, thank you very much for your kind quick support. I am going through your suggested video now, and will try to get it done. I will update you on my status of learning shortly.
@anirbankar2010
@anirbankar2010 6 лет назад
Hi Mam, I have gone through your Video # 30, which is very helpful in this regards. I understood how to use wildcards to find particular keywords inside phrases. However, I would like to request your one more guidance please. You see, below SEARCH formula will help me to populate New Columns' particular rows with suggested keywords, and which means I would need to create multiple columns to understand how many of each KEYWORDS are available in a particular column by running another CALCULATE(COUNTA( formula. So, to populate each Keyword based columns, Formula1 would be: Highlighting Keywords = SWITCH(TRUE(),SEARCH("*Terminated*",Employee[Status],,0)>0,"Terminated",SEARCH("*Pending*",Employee[Status],,0)>0,"Pending") And then, to count each of those Keywords, Formula2 would be: Count of Terminated keyword = CALCULATE(COUNTA(Employee[Terminated Keyword],Employee[Terminated Keyword]="Terminated") where "Terminated Keyword" is the column name I had additionally added to capture & populate word "Terminated" by running above mentioned SWITCH formula1. My Question: How to mix these 2 formula(s) into 1 formula, so that once Formula1 find out the Keyword (example: Terminated) it will totally count that and will type out the counted number only as Output? Means how to mix these two formula together? What should be that mixup single formula? If you kindly help me with this suggestion and kindly help me to write that One mixing formula, then I will be able to save at least 4-5 hours for sure in my project. Hope to receive your kind guidance and help on this urgently. Thank you.
@CurbalEN
@CurbalEN 6 лет назад
Great!!! And best of luck with your Project :) /Ruth
@anirbankar2010
@anirbankar2010 6 лет назад
Thank you once again. :) Could you please guide with your expert suggestions on how to add above mentioned 2 formula(s) into one formula to achieve the result as I had described above?
@timtunbridge
@timtunbridge 6 лет назад
Hi Ruth I appreciate your work. I am trying to follow along ... can I ask what the formula measure is for [No Employees] please. Thanks
@CurbalEN
@CurbalEN 6 лет назад
Hi Tim, No of employees is COUNTA(Employees (name)), I will add the download file in a hour . Of course, if you want to count the number of employees on your file use DISTINCTCOUNT instead so you get the right number. /Ruth
@timtunbridge
@timtunbridge 6 лет назад
Perfect! Thank you
@CurbalEN
@CurbalEN 6 лет назад
It will take a bit longer to add the file, I am out and about, but as soon as I can :) /Ruth
@CurbalEN
@CurbalEN 6 лет назад
The file is now available for download :)
@timtunbridge
@timtunbridge 6 лет назад
Thanks again Ruth. Keep up the great work!
@MarkCBB86
@MarkCBB86 6 лет назад
Thank you so much for the Video
@CurbalEN
@CurbalEN 6 лет назад
You welcome Mark, have a great Sunday :) /Ruth
@aseemgoyal101
@aseemgoyal101 3 года назад
Thanks Ruth. This is great stuff for the learners. I have taken a paid course from very renowned trainers and they also haven’t clarified it. May be they expect me to know in advance. Thanks again.
@jaymehta3320
@jaymehta3320 4 года назад
Thanks for creating this video. Very helpful. I wasn't aware of the FILTER vs no FILTER distinction in CALCULATE.
@CurbalEN
@CurbalEN 4 года назад
One step closer to mastery! /Ruth
@MrJornee
@MrJornee 2 года назад
Thank you! Helped me today! :)
@CurbalEN
@CurbalEN 2 года назад
🎉🎉
@kostaszogo21
@kostaszogo21 2 года назад
Great video as always ! I have a question though: Is there a way to filter by using only part of the value and not the whole word? For example instead of finding all products for which [Color] ="Red", can we find all products for which [Color] contains the letter "R" somewhere in the color field?
@CurbalEN
@CurbalEN 2 года назад
Not yet :(
@sakhilengwenya594
@sakhilengwenya594 2 года назад
Great video
@varunjain3829
@varunjain3829 4 года назад
How can we copy any column from one table and past in another table in power Bi
@nikhargesumit9069
@nikhargesumit9069 4 года назад
Thanks for the explanation. Very nicely explained :)
@SandeepPawar1
@SandeepPawar1 5 лет назад
Thanks Ruth.. does the sequence of the filter expressions matter?
@skdonsingh
@skdonsingh Год назад
Thanks
@rayng4336
@rayng4336 4 года назад
So if I want my result to be dynamic, I really need to add FILTER function(s) in the CALCULATE function. Thanks for pointing out the difference with and without FILTER, Curbal!
@Adnan_Khan24
@Adnan_Khan24 4 года назад
Hi Ruth , as you said it does not contain measure but you used measure "no employees" , is this measure or column, calculator sign shows it is measure. My other question is that how can I register myself for Power BI community. I have Power BI installed but I cant register they said you need admin right to register it. Is there any other way to register in power bi community.
@CurbalEN
@CurbalEN 4 года назад
Hi Adnan, Hope this helps: community.powerbi.com/t5/Community-Accounts-Registration/How-to-Register-for-a-Power-BI-Community-Account/ta-p/680253 /Ruth
@ravitejau7179
@ravitejau7179 3 года назад
Thanks mam. I have learned at last how filter behaves
@kailasswami3319
@kailasswami3319 6 лет назад
Hi Ruth, can you please explain what lock aspects does when turned on..i didn't see any changes, could you please help on it?
@CurbalEN
@CurbalEN 6 лет назад
Hi Kalias, i am not sure What you mean, can you please rephrase? /Ruth
@kailasswami3319
@kailasswami3319 6 лет назад
In visual properties lock aspect option is there? Not sure what's goal it atains when turned on
@CurbalEN
@CurbalEN 6 лет назад
Ok, got it! Lock aspect means that if you change one dimension (height or width) of a visual, the other dimension will automatically be changed to maintain the shape and proportions of the object. Hope this helps! /Ruth
@kailasswami3319
@kailasswami3319 6 лет назад
Thanks Ruth!!☺️
@CurbalEN
@CurbalEN 6 лет назад
My pleasure :) /Ruth
@rosacuevatorrico9109
@rosacuevatorrico9109 5 лет назад
Hey Ruth! Please, help. I try to get the files using the link curbal.com/blog/glossary/calculate-dax but it shows me impossible to download the file (s)
@CurbalEN
@CurbalEN 5 лет назад
All files have been moved to the download center: curbal.com/donwload-center /Ruth
@AndrehHimself
@AndrehHimself 3 года назад
Ruth, please enable paid membership in the channel. You've helped me so much that I feel bad for not retributing, even just a little
@CurbalEN
@CurbalEN 3 года назад
I had something prepared when I reached 30k subs (it was the limit then) but I never turned it on. I will now, thanks!
@anandmani7165
@anandmani7165 4 года назад
can we able to filter more than 2 values in one column using DAX, which is similarly like multiple selections made using list slicer.
@CurbalEN
@CurbalEN 4 года назад
Yes, you can. The power bi community is the perfect place to get individual help. Give as many details as possible of your case to get help. /Ruth
@aashisehrawat
@aashisehrawat 4 года назад
Does using FILTER() slow down our visuals tab?
@CurbalEN
@CurbalEN 4 года назад
There are a lot of factors that affect performance, Filter only wont slow down your reports.
@aashisehrawat
@aashisehrawat 4 года назад
@@CurbalEN Thank you for the prompt response, ma'am. My report has 15 parameters to flex the inputs. And the report is getting slow after all calculations and visuals are done. Calcs are not that complex except one or two measures. And the parameters have 50 inputs on an average for each parameter. Could you share your insights on this problem?
@CurbalEN
@CurbalEN 4 года назад
Best way to get help is to share as many details as you can in the power bi community.
@aashisehrawat
@aashisehrawat 4 года назад
@@CurbalEN Thanks again, ma'am! Good day/night to you. Stay safe :)
@mora_5
@mora_5 Год назад
Best video of all I'm seen in search of calculate explication. Thanks
@CurbalEN
@CurbalEN Год назад
Glad it helped!
@alexkim7270
@alexkim7270 3 года назад
I think I gotta start taking notes on your videos for a quick glance for myself. Your videos have always been consistently good even it was produced many years ago. Thanks, Ruth!
@CurbalEN
@CurbalEN 3 года назад
Thanks Alex!
@mariorgutierrezleal
@mariorgutierrezleal 4 года назад
Great and Easy way to explain this.
@nsquarEeee
@nsquarEeee 3 года назад
Your videos are awesome!!
@CurbalEN
@CurbalEN 3 года назад
Thank you!
@Truth-N-Lies
@Truth-N-Lies 3 года назад
Hi, Ruth, I am beginner in power bi. Every time I watch your videos to clear my concept, you always rocks. Thanks and keep it up.
@CurbalEN
@CurbalEN 3 года назад
Thank you!
@osamaasif9601
@osamaasif9601 4 года назад
Again, thanks Ruth. Can you also do videos on using python & R with power bi?
@CurbalEN
@CurbalEN 4 года назад
Not good enough in those languages to make videos about it, but when I learn something I always show it here. There is an R and Python playlist, check it out! /Ruth
@snapdragon7505
@snapdragon7505 5 лет назад
Most of this video was good. The last couple minutes when she was using the slicer was incoherent. I made no sense.
@CurbalEN
@CurbalEN 5 лет назад
Thanks for the feedback:) /Ruth
@ahmedmandour8140
@ahmedmandour8140 4 года назад
A lot of thanks from Egypt ♥
@nedex3843
@nedex3843 5 лет назад
Hi Ruth, thank you for your lovely videos. I am trying to count the number of distinct cities where profit is greater than 100,000. When I use the calculate function, it does not aggregate the profit over distinct cities, what is the work around? In sql it will be aggregate by sum of price and group by city and having clause having sum(price) > 100000.
@CurbalEN
@CurbalEN 5 лет назад
It is probably an issue with your model. Could you ask in the power bi community? Give as many details as you can :) /Ruth
@millerk2
@millerk2 5 лет назад
Hi Nedex, did you resolve your issue. I am having same issue and would be delighted to know how you got on..
@computek9141
@computek9141 2 года назад
Great video 😁👍
@CurbalEN
@CurbalEN 2 года назад
🥳🥳
@denzl69
@denzl69 5 лет назад
How would i do a starts with filter?
@alejandroruizrabadan4089
@alejandroruizrabadan4089 5 лет назад
Eres fantástica Ruth! Soy muy fan de tus tips y procedimientos. Gracias por todo el material tuyo que hay en la web!
@CurbalEN
@CurbalEN 5 лет назад
Todo un placer!! /Ruth
@kim1217
@kim1217 4 года назад
Hi Ruth, can you talk about how and when to use a table buffering in Power query?
@CurbalEN
@CurbalEN 4 года назад
Yes, of course! Long overdue on that one!
@excaliber4ps
@excaliber4ps 3 года назад
You are my hero!
@CurbalEN
@CurbalEN 3 года назад
🥳🥳
@PD-np8rm
@PD-np8rm 3 года назад
U r a life saver
@CurbalEN
@CurbalEN 3 года назад
At ur service!
@yiubili1
@yiubili1 5 лет назад
fantastic explanation, great video like always.
@CurbalEN
@CurbalEN 5 лет назад
Glad to hear :) /Ruth
@reng7777
@reng7777 4 года назад
Hi there!! Ii am glad to see you sharing with all of us your expertise in the excel Power Tools!!!
@CurbalEN
@CurbalEN 4 года назад
🥳🥳 /Ruth
@jacquelinelacan
@jacquelinelacan 5 лет назад
Came here for THE lindo dax, but stayed for the cute misspelled "devilered" (7:05).
@CurbalEN
@CurbalEN 5 лет назад
I have two many fingers in my hands 😂😂😂 /Ruth
@way2honey
@way2honey 4 года назад
Great Ruth !! Best demonstration for filters so far!!!!
@CurbalEN
@CurbalEN 4 года назад
🥳🥳🥳 Yey! /Ruth
@murugeshs.1844
@murugeshs.1844 5 лет назад
Hi Curbal
@princemittal5166
@princemittal5166 4 года назад
Thank you Ruth!! It's really helpful... :)
@CurbalEN
@CurbalEN 4 года назад
I really hope so! /Ruth
@Phoenixspin
@Phoenixspin 5 лет назад
"Please Microsoft"--it touches my heart when Ruth pleads with Microsoft.
@CurbalEN
@CurbalEN 5 лет назад
I am a hopeless optimist and a dreamer so assuming that Microsoft watches my videos and that pleading to them would work it is right up my alley 😂😂😂 /Ruth
Далее
DAX Fridays! #79: KEEPFILTERS
6:59
Просмотров 20 тыс.
DAX Fridays! #6: FILTER
13:02
Просмотров 70 тыс.
МАЛОЙ ГАИШНИК
00:35
Просмотров 225 тыс.
КВН 2024 Встреча выпускников
2:00:41
Understanding CALCULATE in DAX: Filters
18:01
Просмотров 19 тыс.
Don't make these CALCULATE Function Mistakes! ⚠️
10:09
Row context in DAX explained visually
21:45
Просмотров 15 тыс.
Solving errors in CALCULATE filter arguments
30:55
Просмотров 29 тыс.
Understanding Row Context in DAX using Power BI
19:47
Debug DAX using Variables in Power BI
15:41
Просмотров 89 тыс.
DAX Fridays! #5: CALCULATE (Part 1)
14:29
Просмотров 114 тыс.
МАЛОЙ ГАИШНИК
00:35
Просмотров 225 тыс.