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💌🍀
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.
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.
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.
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.
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.
=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?
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.
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])) ?
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.
=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?
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
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.
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
@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))
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)))
🎉 Unlock AI for $10 per month: ntn.so/Chandoo
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")
I have watched all of your videos in this series till now . Really Informative and Helpful . Keep Up the good Work.
You are a mixture of Talent and Generosity. Thank you very much Chandoo!!!!
Following your mentorship since 10/11 years and it was really amazing every time you bring something new and smart. BIG FAN of u...
Always a pleasure hearing from long-time fans such as yourself. More Power to you ⚡
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 🎉
I am watching your videos is very easly understand and improve myself tq so much sirr
Thank you chando all the way from Nigeria
Fabulous teacher.
Very informative video . Thank you👏
Like you say "Stay Awesome". This video really is awesome. Learned tons of things.
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
Great job Chandoo, very helpful for newer Excel users!
Thanks Chris :)
@@chandoo_ Any detail video on vlookup with real time scenarios.
@@chandoo_ Any detail video on vlookup with real time scenarios with 2 different excel files.
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💌🍀
Wonderful. Good job. I'm using your lessons to prepare for an interview.
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.
Bingo 😎
i could not find it. but your comment helped and i really wanna cry in happiness
This video is 1000 times better than time wasting Web series
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.
Very good video, very useful! Chandoo, thank you very much!
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.
Nice video for every data analyst
Thank you. ❤ From Hyderabad..
Hey Chandoo, waiting for your next video to get uploaded in this series playlist
I learned a lot of things from your channel you are my favorite mentor @Chandoo
Thankyou Chandooooo it really helps
Thank you guru!
Excellent 🎉
Very Helpful indeed!
Truly very useful video ....
Excellent dear
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.
Please continue data analyst playlist sir im waiting for a long
most valueable video
good!
Really great
for female ratio (headcount per department) divide (female count per department)
❤ From Kerala palakkad ❤
=FILTER(Staff[[Emp ID]:[Start Date]],(Staff[Salary]>A1)*(Staff[Gender]="Female")*(YEAR(Staff[Start Date])>=2020))
that's how i did it
Thankyou 😊
Thankyou 💌
Thank u very much 🙏🙏
Median Salary solution -> =MEDIAN(FILTER(staff[Salary],staff[Department]=A7))
Excellent job! I'd love to hear your thoughts on my work.👍
Median Salary = MEDIAN(IF(staff[Department]=B187,staff[Salary]))
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.
i also had same issue
i also dont have TAKE function working on mine.
fan from Tamilnadu 😍
thankyou sir
=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?
Looks good. I assume count(female) is actually COUNTIFS(..) with gender as "Female".
@@chandoo_ yes yes thankyou
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.
I am waiting 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'.
Yes, that is the power of "Dynamic array" behaviour. Everything can spill now (well almost everything).
Great
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])) ?
XLOOKUP only returns the first salary value in department. So it won't work. Try again.
=MEDIAN(FILTER(Staff[Salary],Staff[Department]=B6))
I think it is work properly. check it once
Chandoo do you have a plan changing your TH-cam profile picture? 😊
That is my logo, so not really.
33:42 TAKE(SORT(FILTER(staff[Salary],staff[Gender]=D$4),,-1),5)
From where do i download the Essential Excel formula sheet and sample Data table?
Where can I find the sample file of this video?
Can u pls provide it's link
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.
Female Ratio: COUNTIF(staff[Department],B5#)/GCD(COUNTIF(staff[Department],B5#,COUNTIFS(staff[Gender],"Female",staff[Department],B5#))&":"&COUNTIFS(staff[Gender],"Female",staff[Department],B5#)/GCD(COUNTIF(staff[Department],B5#),COUNTIFS(staff[Gender],"Female",staff[Department],B5#))
Correct?
Does it work Sir?
33:42 =TAKE(SORT(FILTER(staff[Salary],staff[Gender]=C$3),,-1),5)
=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?
What is the ,all department ratio formula
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
I did it !!!!!!!!!! 😂😂
=FILTER(staff,staff[Salary]=120000)
Female Employees with Monday start
=FILTER(staff,(TEXT(staff[Start Date],"DDDD")="Monday") * (staff[Gender]="Female"))
Female employees with Monday Start (=FILTER(staff,(staff[Gender]="Female")*(TEXT(staff[Start Date],"dddd")="Monday"))
Solutuon 9 Assignment : =FILTER(staff[[Emp ID]:[Last Name]],(TEXT(staff[Start Date],"dddd")="Monday")*(staff[Gender]="Female"))
wrong
I appreciate and enjoy your videos, but I find the background music to be distractingly annoying. Just my feedback sir. I wish you well.
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.
I want to know that why cant we give the logical conditions using AND() & OR() in the 'include' parameter of FILTER() function
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.
Good evening sir,
sir, can u send me this file for practice
please sir it will be very helpful for me.
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
But it is manual and becomes stale if your criteria or data changes.
@@chandoo_ okk sir...I understood
Sir...I don't have excel 365 ....I am unable to use functions like CHOOSECLMS.....what should I do?
=MEDIAN(staff[Salary])
hi where i can get this file in your website?
how to put "All dept in one cell comma seperated"
Female employees Start Date on Monday:
=FILTER(staff[[Emp ID]:[Last Name]],(staff[Gender]="female")*(TEXT(staff[Start Date],"ddd")="Mon"))
It can be done using weekday function lol,
The count is 62 right? of female employees whose start date is Monday
1st cmd
Sir we don't have Excel 365 we have old version 😢
Hi please my excel is not performing some of the functions I use an apple laptop it’s just so strange
How to hide cell formula in google sheet.
❤
@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))
Change the [salary bucket] to [salary] column.
Reasons for changing the salary bucket to salary??? explain?@@chandoo_
❤❤
Excellent, but I can't believe you "merge & centered". 🤣
There is nothing wrong with that. Anyone who tells you otherwise is just being pedantic.
(YEAR(Staff[Start Date])>=2020)
can anyone help me with the median challenge..tried a lot but couldnt resolve
@sanjuktabarua3213 =MEDIAN(FILTER(staff[Salary],staff[Department]=B6))
Give it a try..
hoe to download the sample data there is no link in the video description
great job but can you just turn off this music ...i can not focus with it
i can’t download the practice file, the link looks to be broken on the site.
I just tested and both practice and complete file links work fine. Try again.
Plz share Practice file.
It is here - chandoo.org/wp/free-data-analyst-course/
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"))
@@saurabh-zg7qc thanks bro
@@arunzone4477 happy to help
చందు గారు ఈ ఫార్ములా మరియు ఫంక్షన్స్ మేధ ఒక పూర్తి వీడియో తెలుగులో చేసి పుణ్యం కట్టుకోండి అయ్యా... చాల మంది మీ వీడియోల కోసం ఎదురుచూస్తున్నారు ప్లీజ్ సార్
This is already in the pipeline and should be out on the channel in the next 4 weeks.
IS THERE ANYONE WHO FINDOUT THE LAST ONE? THE FEMALE RATIO?
sir provide pratice data about this video
Refer to the video description. The link is in there.
Video quality is poor
Must be your connection. The video is a HD quality and works just fine.
plz teach in hindi..it will be more easily understood
01:01:35 =FILTER(staff,staff[Gender]="Female",WEEKDAY(staff[Start Date]=2))
@chandoo_ sei fantastico 🤩
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)))
=FILTER(staff,(staff[Salary]>100000)*(staff[Gender]="Female")*(staff[Start Date]>DATE(2020,1,1)))