I would appreciate it if you could confirm whether these answers are correct Answers: 1.=COUNTIFS(staff[Department],A4,staff[Employee type],"Permanent") 2.=FILTER(staff,staff[Start Date]>=DATE(2020,1,1)) 3.=TEXTJOIN(",",TRUE,UNIQUE(staff[Department])) 4.=FILTER(staff[Employee], staff[Salary] >= 120000, "No Match Found") 5.=FILTER(staff,(staff[Gender]="Female")* (WEEKDAY(staff[Start Date],2)=1)) 6.=MEDIAN(FILTER(staff[Salary], staff[Department] = A4)) 7.=COUNTIFS(staff[Department], A4, staff[Gender], "Female")
Sir, you are "NOTION" personified for me :-) I say this because I have been studying a lot of tutorials in the past year to upgrade my knowledge on Excel formulas and this single video helped me test my application prowess . High quality content.Thank you Sir for putting in so much thought and effort to curate such videos
Even thought I was using excel for 4 years , but am happy to say that I learned some thing new in every exercises which u have thought am gratefully to you for this wonder full video sir hats off 🎉
Sir we are waiting for telugu classes.....And also give some job requirement details at particular day its better for Saturday. u r big opportunity for unemployed youth
When i watch you videos. I feel its like a movie , each scene(video frames) is trilling and sensational. Seriously! personally i learn a lot from that channel. Love from pakistan. Make some awesome videos on padas,matplotlib,seaborn python libraries💌🍀
Sir thank you ❤. You are literally amazing and work is awesome as you. You are helping a lot of people by just sharing your knowledge and it's cost of freee.
Bro..dats da irony, u would criticise watching webseries but would be proud and brag about it if u get a data scientist job at Netflix..and cry when Netflix lays u off because people aren't renewing their subscriptions lol.
Hi Chandoo, i really like you man. im a begginer in excel with some basic knowledge. Your content is really helpful. First formula is =COUNTIFS(staff[Employee type],"Permanent",staff[Department],B3:B14) right? it took me sometime to figure out.
Thank you once again, Sir. While following I realised my Excel 365 has only CHOOSE but not CHOOSECOLS under the second concept. Here, in this fascinating one, it has only SORT but not the TAKE function. Please how can I fix this? I am really enjoying the lessons in this series. Appreciations from Ghana.
Some of these functions are added into newer versions of Excel and if you have not update Excel in a while, you won't see them. One easy fix is to try them with Excel online. Another option is to sign up for "faster" or "beta" updates in Office. To do that, go to File menu in Excel, click on Account and click on Microsoft Insider and enable the option.
=FILTER(CHOOSE({1,2,3,4},staff[Emp ID],staff[First Name],staff[Last Name],staff[Gender]),(WEEKDAY(staff[Start Date])=2)*(staff[Gender]="Female")) , i wrote this formula for female employees for monday start in excel 2021
Hi chandoo, thankyou for your videos, they are really helpful. Female Ratio for a department: =count(female)/GCD(count(female),Total Headcount) & ":" & Total Headcount/GCD(count(female),Total Headcount), is it correct?
=COUNTIFS(staff[Gender],"Female",staff[Department],A5) &":"& COUNTIFS(staff[Gender],"male",staff[Department],A5) , this is for Female ratio is this correct A5 for Department?
I can't locate practice file sir, can you please put it in description box itself like as you did it for previous vedios? Its hard to find in website sir.
Sir I have a issue in ChooseColumn Function. This function can't Show in my Excel 365 how to add this Function into the excel. You are very great tutor love from Pakistan.
Hi @chandoo_, I wanted to add one comments and insights column alongside in pivot table. Bcs, whenever we include new data the report changes accordingly, so the insights that we made have to be copy pasted again to the respective rows. Any idea for it.
Even if you have 365 and if you have formatted your data in table and using formula with criteria as range instead of reference to cell; You will still get 'Spill'.
Hello sir For the last challenge of determining the median salary for each department can this be a solution : Median(xlookup(referenced cell as lookup_value,staff[department],staff[salary])) ?
Challenge 6: =XLOOKUP(120000, staff[Salary], staff, "Not found",0,1) I know the FILTER function will come in if you could help me with the exact portion I can fix it that'd be awesome, Sir
@Chandoo - Can you pls help on the 3rd challenge with condition for females having greater $100k salary and joined after 1st jan 2020 . I am using this formula and is displaying all the values of salary below 100k too. Not sure where am i going wrong Formula used =FILTER(staff[[Emp ID]:[Salary]],(staff[Salary Bucket]>100000)*(staff[Gender]="Female")*(staff[Start Date]>H12))
That's because and() & or() work on a single line formula not in an array. An array basically takes your data and multiplies it by 0 or any other number (mostly 1). If you take the * it basically asks is this condition met? if yes then it gives the value one else zero. So when 2 conditions are met it becomes 1*1 =1. If one condition is false it will be 1*0= 0. The array will only show data where the condition is not zero. Now take the +. if 1 condition is met it will be 1+0=1. Both conditions are met it will be 1+1=2. Hence it will show if either condition is true.
Sir, Why can't we copy the filtered data from sheet and paste it to another sheet.... instead of using filter function... Copy and paste is easy and it will give as same as original sheet
Thanks for the feedback. I experiment with music on / off on my videos to see what produces better outcome for viewers. Largely, having music on seems to help people enjoy the content. But may be I got the balance (music too loud) wrong in this video.
bro plz help to explain what is the error in this command and plz correct female employees starting on monday =FILTER(staff, (staff[Gender]="Female") * (staff[Start Date]=DATE(Year, 1, 1)))
Date function you used will give the first date of the month for example 1 january, 1 March , if you want Monday start date use text function =Filter(staff,(staff[Gender]="Female")*(Text(staff[start date],"dddd")="Monday"))
చందు గారు ఈ ఫార్ములా మరియు ఫంక్షన్స్ మేధ ఒక పూర్తి వీడియో తెలుగులో చేసి పుణ్యం కట్టుకోండి అయ్యా... చాల మంది మీ వీడియోల కోసం ఎదురుచూస్తున్నారు ప్లీజ్ సార్
solution for the challenge to filter female employees with >100k salary and start date after 2020 : =FILTER(staff, (staff[Salary]>A22)*(staff[Gender] = "female")*(staff[Start Date]>DATE(2020,1,1)))