๐ ๐๐ & ๐ ๐ฎ๐ฐ๐ต๐ถ๐ป๐ฒ ๐๐ฒ๐ฎ๐ฟ๐ป๐ถ๐ป๐ด ๐๐ฅ๐๐ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ผ๐๐ฟ๐๐ฒ
๐ฅ Upgrade your skills and prepare for exciting career opportunities in AI!
โ Beginner-friendly course
โ Learn AI & Machine Learning fundamentals
โ Gain practical, job-ready skills
โ Earn a FREE certificate
โ Boost your resume and LinkedIn profile
โ Ideal for students, freshers and professionals
๐ ๐๐ป๐ฟ๐ผ๐น๐น ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ ๐:-
https://pdlink.in/4zrkYNg
โก Limited opportunityโstart learning today!
๐ฅ Upgrade your skills and prepare for exciting career opportunities in AI!
โ Beginner-friendly course
โ Learn AI & Machine Learning fundamentals
โ Gain practical, job-ready skills
โ Earn a FREE certificate
โ Boost your resume and LinkedIn profile
โ Ideal for students, freshers and professionals
๐ ๐๐ป๐ฟ๐ผ๐น๐น ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ ๐:-
https://pdlink.in/4zrkYNg
โก Limited opportunityโstart learning today!
โค1
๐ Data Analyst Roadmap โ Part 4
๐ Excel โ Level 3: Conditional Functions
Now that you understand basic Excel formulas, the next step is learning how to make Excel make decisions based on conditions.
This is a very important skill for Data Analysts because real-world questions are rarely just:
Instead, you'll get questions like:
To answer these questions, you need conditional functions.
1๏ธโฃ IF()
IF() is one of the most important Excel functions.
It allows Excel to make a decision.
Syntax
Think of it as:
Example
Suppose sales are in B2.
You want to classify employees:
Sales โฅ 50,000 โ High
Sales < 50,000 โ Low
If B2 is:
75,000
Result: High
If B2 is:
35,000
Result: Low
2๏ธโฃ IF() in Real-World Data Analysis
Suppose you have:
Employee | Sales
John | 75,000
Sarah | 45,000
Mike | 90,000
David | 30,000
You can create a performance column:
Result:
Employee | Sales | Status
John | 75,000 | Target Achieved
Sarah | 45,000 | Target Not Achieved
Mike | 90,000 | Target Achieved
David | 30,000 | Target Not Achieved
This is called data categorization.
3๏ธโฃ Multiple Conditions with Nested IF()
Sometimes you need more than two categories.
For example:
โฅ 80,000 โ Excellent
โฅ 60,000 โ Good
โฅ 40,000 โ Average
< 40,000 โ Poor
You can use:
Excel checks the conditions from left to right.
Important: The order matters. You should generally check the highest threshold first.
4๏ธโฃ IFS()
IFS() is a cleaner alternative when you have multiple conditions.
The first condition that evaluates to TRUE determines the result.
IF vs IFS
Use:
5๏ธโฃ AND()
AND() checks whether all conditions are true.
Example
You want to identify employees who:
Belong to IT AND earn more than โน80,000
Both conditions must be true.
6๏ธโฃ Combining IF() + AND()
This is more useful in real analysis.
Meaning:
7๏ธโฃ OR()
OR() checks whether at least one condition is true.
Example:
You want to identify employees who belong to either:
IT OR Finance
If either condition is true, the result is TRUE.
8๏ธโฃ Combining IF() + OR()
๐ Excel โ Level 3: Conditional Functions
Now that you understand basic Excel formulas, the next step is learning how to make Excel make decisions based on conditions.
This is a very important skill for Data Analysts because real-world questions are rarely just:
"What is the total?"
Instead, you'll get questions like:
"What are the total sales for the IT department?"
"How many employees earn more than โน80,000?"
"What is the average sales for the North region?"
"Which employees achieved their target?"
To answer these questions, you need conditional functions.
1๏ธโฃ IF()
IF() is one of the most important Excel functions.
It allows Excel to make a decision.
Syntax
=IF(condition, value_if_true, value_if_false)Think of it as:
If something is true โ do this; otherwise โ do that.
Example
Suppose sales are in B2.
You want to classify employees:
Sales โฅ 50,000 โ High
Sales < 50,000 โ Low
=IF(B2>=50000,"High","Low")If B2 is:
75,000
Result: High
If B2 is:
35,000
Result: Low
2๏ธโฃ IF() in Real-World Data Analysis
Suppose you have:
Employee | Sales
John | 75,000
Sarah | 45,000
Mike | 90,000
David | 30,000
You can create a performance column:
=IF(B2>=50000,"Target Achieved","Target Not Achieved")Result:
Employee | Sales | Status
John | 75,000 | Target Achieved
Sarah | 45,000 | Target Not Achieved
Mike | 90,000 | Target Achieved
David | 30,000 | Target Not Achieved
This is called data categorization.
3๏ธโฃ Multiple Conditions with Nested IF()
Sometimes you need more than two categories.
For example:
โฅ 80,000 โ Excellent
โฅ 60,000 โ Good
โฅ 40,000 โ Average
< 40,000 โ Poor
You can use:
=IF(B2>=80000,"Excellent",IF(B2>=60000,"Good",IF(B2>=40000,"Average","Poor")))Excel checks the conditions from left to right.
Important: The order matters. You should generally check the highest threshold first.
4๏ธโฃ IFS()
IFS() is a cleaner alternative when you have multiple conditions.
=IFS(
B2>=80000,"Excellent",
B2>=60000,"Good",
B2>=40000,"Average",
TRUE,"Poor"
)
The first condition that evaluates to TRUE determines the result.
IF vs IFS
Use:
IF() โ simple decisionsIFS() โ multiple conditions 5๏ธโฃ AND()
AND() checks whether all conditions are true.
Example
You want to identify employees who:
Belong to IT AND earn more than โน80,000
=AND(B2="IT",C2>80000)Both conditions must be true.
6๏ธโฃ Combining IF() + AND()
This is more useful in real analysis.
=IF(AND(B2="IT",C2>80000),"Eligible","Not Eligible")Meaning:
If the employee is from IT AND salary is greater than โน80,000, return "Eligible".
Otherwise: "Not Eligible"
7๏ธโฃ OR()
OR() checks whether at least one condition is true.
Example:
You want to identify employees who belong to either:
IT OR Finance
=OR(B2="IT",B2="Finance")If either condition is true, the result is TRUE.
8๏ธโฃ Combining IF() + OR()
=IF(
OR(B2="IT",B2="Finance"),
"Technical Department",
"Other"
)
This is extremely useful for business analysis.
1๏ธโฃ8๏ธโฃ Understand IF vs IF Functions
This distinction is important.
IF()
Used to make a decision.
Example:
SUMIF()
Used to calculate a sum based on a condition.
Example:
COUNTIF()
Used to count records based on a condition.
Example:
AVERAGEIF()
Used to calculate an average based on a condition.
Example:
Think:
IF โ Decision
SUMIF โ Conditional Total
COUNTIF โ Conditional Count
AVERAGEIF โ Conditional Average
๐งช Practical Interview Challenge
Suppose you have:
Employee | Department | Salary
John | IT | 75,000
Sarah | HR | 60,000
Mike | IT | 82,000
David | Finance | 90,000
Alice | HR | 65,000
Your interviewer asks:
Q1. Is John earning more than โน70,000?
Q2. How many employees are in IT?
Q3. What is the total IT salary?
Q4. What is the average IT salary?
Q5. How many IT employees earn more than โน80,000?
Q6. What is the total salary of IT employees earning more than โน70,000?
๐ Key Lesson
Understand the question first.
"Should I classify this record?"
โ IF()
"How much in total?"
โ SUMIF() / SUMIFS()
"How many?"
โ COUNTIF() / COUNTIFS()
"What's the average?"
โ AVERAGEIF() / AVERAGEIFS()
One condition?
โ IF version
Multiple conditions?
โ IFS version
Double Tap โค๏ธ For Part-5
1๏ธโฃ8๏ธโฃ Understand IF vs IF Functions
This distinction is important.
IF()
Used to make a decision.
Example:
=IF(C2>=50000,"High","Low")SUMIF()
Used to calculate a sum based on a condition.
Example:
=SUMIF(B2:B100,"IT",C2:C100)COUNTIF()
Used to count records based on a condition.
Example:
=COUNTIF(B2:B100,"IT")AVERAGEIF()
Used to calculate an average based on a condition.
Example:
=AVERAGEIF(B2:B100,"IT",C2:C100)Think:
IF โ Decision
SUMIF โ Conditional Total
COUNTIF โ Conditional Count
AVERAGEIF โ Conditional Average
๐งช Practical Interview Challenge
Suppose you have:
Employee | Department | Salary
John | IT | 75,000
Sarah | HR | 60,000
Mike | IT | 82,000
David | Finance | 90,000
Alice | HR | 65,000
Your interviewer asks:
Q1. Is John earning more than โน70,000?
=IF(C2>70000,"Yes","No")Q2. How many employees are in IT?
=COUNTIF(B2:B6,"IT")Q3. What is the total IT salary?
=SUMIF(B2:B6,"IT",C2:C6)Q4. What is the average IT salary?
=AVERAGEIF(B2:B6,"IT",C2:C6)Q5. How many IT employees earn more than โน80,000?
=COUNTIFS(B2:B6,"IT",C2:C6,">80000")Q6. What is the total salary of IT employees earning more than โน70,000?
=SUMIFS(C2:C6,B2:B6,"IT",C2:C6,">70000")๐ Key Lesson
Understand the question first.
"Should I classify this record?"
โ IF()
"How much in total?"
โ SUMIF() / SUMIFS()
"How many?"
โ COUNTIF() / COUNTIFS()
"What's the average?"
โ AVERAGEIF() / AVERAGEIFS()
One condition?
โ IF version
Multiple conditions?
โ IFS version
Double Tap โค๏ธ For Part-5
โค11๐1
๐ ๐ช๐ถ๐ฝ๐ฟ๐ผ ๐๐น๐ถ๐๐ฒ ๐ก๐ง๐ & ๐ง๐๐ฟ๐ฏ๐ผ ๐๐ฅ๐๐ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐๐ถ๐ ๐ป๐ฅ
Get access to a FREE interview preparation kit and prepare smarter for your upcoming assessment & interview rounds.
๐ Prepare For:-
โ Technical Interview Questions
โ Software Engineer Interview Rounds
โ Interview Preparation Resources
๐ฏ Perfect for Students | Freshers | Engineering Graduates | Wipro Aspirants
๐ ๐๐ฒ๐ ๐๐ฅ๐๐ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐๐ถ๐ ๐:-
https://pdlink.in/4zh9E6g
๐ฅ Start preparing early and improve your chances of cracking the Wipro hiring process!
Get access to a FREE interview preparation kit and prepare smarter for your upcoming assessment & interview rounds.
๐ Prepare For:-
โ Technical Interview Questions
โ Software Engineer Interview Rounds
โ Interview Preparation Resources
๐ฏ Perfect for Students | Freshers | Engineering Graduates | Wipro Aspirants
๐ ๐๐ฒ๐ ๐๐ฅ๐๐ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐๐ถ๐ ๐:-
https://pdlink.in/4zh9E6g
๐ฅ Start preparing early and improve your chances of cracking the Wipro hiring process!
โค1
๐ Excel Basics #32 โ Data Validation
When multiple people enter data into an Excel sheet, incorrect or inconsistent entries can easily create data-quality problems.
For example:
โ Someone enters "Pending"
โ Someone enters "pending"
โ Someone enters "Pendng"
Data Validation helps control what users can enter into a cell.
๐ What is Data Validation?
Data Validation allows you to set rules that restrict or control the type of data entered into a cell.
Go to:
Data โ Data Validation
๐ 1. Create a Drop-Down List
One of the most common uses of Data Validation is creating a dropdown.
Example:
You want users to select only:
โข Pending
โข In Progress
โข Completed
Steps:
1๏ธโฃ Select the cells.
2๏ธโฃ Go to Data โ Data Validation.
3๏ธโฃ Under Allow, select List.
4๏ธโฃ Enter:
Pending,In Progress,Completed
5๏ธโฃ Click OK.
Now users can select a status from a dropdown instead of typing it manually.
๐ 2. Restrict Numbers
You can restrict users to entering numbers within a specific range.
Example:
Allow marks only between 0 and 100.
Go to:
Data Validation โ Allow โ Whole Number
Then set:
between โ 0 โ 100
If someone enters "150", Excel can reject the entry.
๐ 3. Restrict Dates
You can also control which dates users can enter.
Example:
Allow dates only between:
01-Jan-2026 and 31-Dec-2026
This is useful for project trackers, financial reports, and attendance sheets.
๐ 4. Restrict Text Length
You can limit the number of characters entered.
Example:
Employee ID must contain a maximum of 10 characters.
Go to:
Data Validation โ Allow โ Text Length
Then specify the required limit.
๐ 5. Create an Input Message
Data Validation can display instructions when a user selects the cell.
Example:
Input Message:
"Select a valid project status from the dropdown."
This helps users understand what they are expected to enter.
๐ 6. Create an Error Alert
You can decide what happens when someone enters invalid data.
Excel provides options such as:
Stop โ Prevent invalid entry.
Warning โ Warn the user but allow them to continue.
Information โ Display an informational message.
For important business data, Stop is usually the safest option.
๐ Real-World Example
Imagine a project tracker:
Employee | Status | Priority
Rahul | Completed | High
Priya | In Progress | Medium
Amit | Pending | Low
Instead of allowing users to type anything, create dropdowns for:
Status:
โข Pending
โข In Progress
โข Completed
Priority:
โข High
โข Medium
โข Low
This keeps the dataset consistent and easier to analyze.
๐ Common Mistakes
โ Allowing users to type values manually when a dropdown would be better.
โ Not setting an error alert.
โ Applying validation to only part of the required data range.
โ Using inconsistent values in the source list.
โ Best Practices
โข Use dropdowns for fixed categories.
โข Restrict numbers and dates where appropriate.
โข Add helpful input messages.
โข Use meaningful error messages.
โข Apply validation before distributing the workbook.
โข Keep the allowed values standardized.
๐ก Remember:
Data Validation doesn't just make Excel look professional.
It helps improve data quality by controlling what users can enter.
For data analysts, this is especially important because clean and consistent input data leads to more reliable analysis.
Double Tap โค๏ธ For More
When multiple people enter data into an Excel sheet, incorrect or inconsistent entries can easily create data-quality problems.
For example:
โ Someone enters "Pending"
โ Someone enters "pending"
โ Someone enters "Pendng"
Data Validation helps control what users can enter into a cell.
๐ What is Data Validation?
Data Validation allows you to set rules that restrict or control the type of data entered into a cell.
Go to:
Data โ Data Validation
๐ 1. Create a Drop-Down List
One of the most common uses of Data Validation is creating a dropdown.
Example:
You want users to select only:
โข Pending
โข In Progress
โข Completed
Steps:
1๏ธโฃ Select the cells.
2๏ธโฃ Go to Data โ Data Validation.
3๏ธโฃ Under Allow, select List.
4๏ธโฃ Enter:
Pending,In Progress,Completed
5๏ธโฃ Click OK.
Now users can select a status from a dropdown instead of typing it manually.
๐ 2. Restrict Numbers
You can restrict users to entering numbers within a specific range.
Example:
Allow marks only between 0 and 100.
Go to:
Data Validation โ Allow โ Whole Number
Then set:
between โ 0 โ 100
If someone enters "150", Excel can reject the entry.
๐ 3. Restrict Dates
You can also control which dates users can enter.
Example:
Allow dates only between:
01-Jan-2026 and 31-Dec-2026
This is useful for project trackers, financial reports, and attendance sheets.
๐ 4. Restrict Text Length
You can limit the number of characters entered.
Example:
Employee ID must contain a maximum of 10 characters.
Go to:
Data Validation โ Allow โ Text Length
Then specify the required limit.
๐ 5. Create an Input Message
Data Validation can display instructions when a user selects the cell.
Example:
Input Message:
"Select a valid project status from the dropdown."
This helps users understand what they are expected to enter.
๐ 6. Create an Error Alert
You can decide what happens when someone enters invalid data.
Excel provides options such as:
Stop โ Prevent invalid entry.
Warning โ Warn the user but allow them to continue.
Information โ Display an informational message.
For important business data, Stop is usually the safest option.
๐ Real-World Example
Imagine a project tracker:
Employee | Status | Priority
Rahul | Completed | High
Priya | In Progress | Medium
Amit | Pending | Low
Instead of allowing users to type anything, create dropdowns for:
Status:
โข Pending
โข In Progress
โข Completed
Priority:
โข High
โข Medium
โข Low
This keeps the dataset consistent and easier to analyze.
๐ Common Mistakes
โ Allowing users to type values manually when a dropdown would be better.
โ Not setting an error alert.
โ Applying validation to only part of the required data range.
โ Using inconsistent values in the source list.
โ Best Practices
โข Use dropdowns for fixed categories.
โข Restrict numbers and dates where appropriate.
โข Add helpful input messages.
โข Use meaningful error messages.
โข Apply validation before distributing the workbook.
โข Keep the allowed values standardized.
๐ก Remember:
Data Validation doesn't just make Excel look professional.
It helps improve data quality by controlling what users can enter.
For data analysts, this is especially important because clean and consistent input data leads to more reliable analysis.
Double Tap โค๏ธ For More
โค10๐1
๐ฃ๐ฎ๐ ๐๐ณ๐๐ฒ๐ฟ ๐ฃ๐น๐ฎ๐ฐ๐ฒ๐บ๐ฒ๐ป๐โ๐๐ฒ๐ฐ๐ผ๐บ๐ฒ ๐ฎ ๐๐๐น๐น ๐ฆ๐๐ฎ๐ฐ๐ธ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐ฒ๐ฟ ๐๐ถ๐๐ต ๐๐ฒ๐ป๐๐๐
Curriculum designed and taught by alumni from IITs & leading tech companies.
๐ Placement Highlights:-
๐ฐ โน41 LPA highest salary
๐ โน7.4 LPA average salary
๐ 2,000+ students placed
๐ข 500+ partner companies
๐ ๐๐ฝ๐ฝ๐น๐ ๐ก๐ผ๐ ๐:-
https://pdlink.in/3SuUeuD
โก Take the first step toward your dream tech career today!
Curriculum designed and taught by alumni from IITs & leading tech companies.
๐ Placement Highlights:-
๐ฐ โน41 LPA highest salary
๐ โน7.4 LPA average salary
๐ 2,000+ students placed
๐ข 500+ partner companies
๐ ๐๐ฝ๐ฝ๐น๐ ๐ก๐ผ๐ ๐:-
https://pdlink.in/3SuUeuD
โก Take the first step toward your dream tech career today!
โค1
๐ Data Analyst Roadmap โ Part 6
๐ Excel โ Level 5: Text Functions for Data Cleaning & Transformation
As a Data Analyst, you'll rarely receive perfectly clean data.
You may encounter:
" John"
"John "
"JOHN"
"john"
"John Smith"
"John Smith"
You may also have data such as:
EMP-001-IND
Mumbai, India
john.smith@email.com
+91-9876543210
Before analyzing this data, you often need to clean, extract, combine, split, or standardize text.
That's why Excel's text functions are extremely useful.
1๏ธโฃ TRIM()
What does it do?
TRIM() removes unnecessary spaces from text.
For example:
" John Smith "
becomes:
"John Smith"
Formula:
Why is this important?
Suppose you have:
IT
IT
IT
IT
They may look identical, but hidden spaces can cause lookup and filtering problems.
For example:
may not behave as expected if the underlying values contain unwanted spaces.
Data Analyst use cases:
Use TRIM() for:
โข Customer names
โข Department names
โข Product names
โข Country names
โข Category values
2๏ธโฃ CLEAN()
CLEAN() removes many non-printing characters from text.
Formula:
This can be useful when data is copied from:
โข Websites
โข External systems
โข Reports
โข PDFs
โข Legacy applications
Sometimes invisible characters are present even though the text looks normal.
TRIM vs CLEAN:
TRIM() โ Removes unnecessary spaces.
CLEAN() โ Removes non-printing characters.
You can combine them:
This is a very useful basic data-cleaning pattern.
3๏ธโฃ UPPER()
Converts text to uppercase.
Example:
india
becomes:
INDIA
Why use it?
Suppose your dataset contains:
India
india
INDIA
You can standardize them using:
Now they all become:
INDIA
4๏ธโฃ LOWER()
Converts text to lowercase.
Example:
JOHN.SMITH@EMAIL.COM
becomes:
john.smith@email.com
This is particularly useful for standardizing:
โข Email addresses
โข Usernames
โข IDs
โข Text categories
โโโโโโโโโโ
5๏ธโฃ PROPER()
Converts text into proper case.
Example:
john smith
becomes:
John Smith
And:
mumbai
becomes:
Mumbai
Important:
PROPER() is useful for presentation, but don't automatically use it for every dataset.
Some names, product codes, or abbreviations should remain uppercase.
For example:
IBM
SQL
USA
may become undesirable results if automatically converted to proper case.
6๏ธโฃ LEN()
LEN() returns the number of characters in a text string.
Example:
A2 = "John"
Result:
4
Why is this useful?
It can help identify:
โข Invalid IDs
โข Incorrect phone numbers
โข Unexpected text lengths
โข Data-quality issues
For example:
You could check:
7๏ธโฃ LEFT()
LEFT() extracts characters from the beginning of a text string.
Syntax:
Example:
EMP-001-IND
To extract the first three characters:
Result:
EMP
8๏ธโฃ RIGHT()
RIGHT() extracts characters from the end of a text string.
Example:
EMP-001-IND
Formula:
Result:
IND
This can be useful for extracting:
โข Country codes
โข File extensions
โข Product suffixes
โข Transaction codes
9๏ธโฃ MID()
๐ Excel โ Level 5: Text Functions for Data Cleaning & Transformation
As a Data Analyst, you'll rarely receive perfectly clean data.
You may encounter:
" John"
"John "
"JOHN"
"john"
"John Smith"
"John Smith"
You may also have data such as:
EMP-001-IND
Mumbai, India
john.smith@email.com
+91-9876543210
Before analyzing this data, you often need to clean, extract, combine, split, or standardize text.
That's why Excel's text functions are extremely useful.
1๏ธโฃ TRIM()
What does it do?
TRIM() removes unnecessary spaces from text.
For example:
" John Smith "
becomes:
"John Smith"
Formula:
=TRIM(A2)Why is this important?
Suppose you have:
IT
IT
IT
IT
They may look identical, but hidden spaces can cause lookup and filtering problems.
For example:
=XLOOKUP("IT",A2:A100,B2:B100)may not behave as expected if the underlying values contain unwanted spaces.
Data Analyst use cases:
Use TRIM() for:
โข Customer names
โข Department names
โข Product names
โข Country names
โข Category values
2๏ธโฃ CLEAN()
CLEAN() removes many non-printing characters from text.
Formula:
=CLEAN(A2)This can be useful when data is copied from:
โข Websites
โข External systems
โข Reports
โข PDFs
โข Legacy applications
Sometimes invisible characters are present even though the text looks normal.
TRIM vs CLEAN:
TRIM() โ Removes unnecessary spaces.
CLEAN() โ Removes non-printing characters.
You can combine them:
=TRIM(CLEAN(A2))This is a very useful basic data-cleaning pattern.
3๏ธโฃ UPPER()
Converts text to uppercase.
=UPPER(A2)Example:
india
becomes:
INDIA
Why use it?
Suppose your dataset contains:
India
india
INDIA
You can standardize them using:
=UPPER(A2)Now they all become:
INDIA
4๏ธโฃ LOWER()
Converts text to lowercase.
=LOWER(A2)Example:
JOHN.SMITH@EMAIL.COM
becomes:
john.smith@email.com
This is particularly useful for standardizing:
โข Email addresses
โข Usernames
โข IDs
โข Text categories
โโโโโโโโโโ
5๏ธโฃ PROPER()
Converts text into proper case.
=PROPER(A2)Example:
john smith
becomes:
John Smith
And:
mumbai
becomes:
Mumbai
Important:
PROPER() is useful for presentation, but don't automatically use it for every dataset.
Some names, product codes, or abbreviations should remain uppercase.
For example:
IBM
SQL
USA
may become undesirable results if automatically converted to proper case.
6๏ธโฃ LEN()
LEN() returns the number of characters in a text string.
=LEN(A2)Example:
A2 = "John"
Result:
4
Why is this useful?
It can help identify:
โข Invalid IDs
โข Incorrect phone numbers
โข Unexpected text lengths
โข Data-quality issues
For example:
Employee IDs should always contain 6 characters.
You could check:
=IF(LEN(A2)=6,"Valid","Check")7๏ธโฃ LEFT()
LEFT() extracts characters from the beginning of a text string.
Syntax:
=LEFT(text,num_chars)Example:
EMP-001-IND
To extract the first three characters:
=LEFT(A2,3)Result:
EMP
8๏ธโฃ RIGHT()
RIGHT() extracts characters from the end of a text string.
Example:
EMP-001-IND
Formula:
=RIGHT(A2,3)Result:
IND
This can be useful for extracting:
โข Country codes
โข File extensions
โข Product suffixes
โข Transaction codes
9๏ธโฃ MID()
โค2
MID() extracts text from the middle of a string.
Syntax:
Suppose:
EMP-001-IND
You want:
001
Use:
Result:
001
Because:
Start at character 5
Extract 3 characters
๐ FIND()
FIND() tells you where one piece of text appears inside another.
Example:
john.smith@gmail.com
You can find the position of @:
This returns the position of the @ character.
Why is this useful?
You can use the position to extract:
โข Email username
โข Domain
โข Product components
โข Codes
โข Identifiers
1๏ธโฃ1๏ธโฃ SEARCH()
SEARCH() is similar to FIND() but has some differences.
For example:
Unlike FIND(), SEARCH() is not case-sensitive.
Simple distinction:
FIND() โ Case-sensitive
SEARCH() โ Not case-sensitive
This difference can matter when cleaning real-world data.
1๏ธโฃ2๏ธโฃ SUBSTITUTE()
SUBSTITUTE() replaces specific text with another value.
Suppose:
A2 = Mumbai, India
You want to replace the comma with a hyphen.
Result:
Mumbai- India
You can also replace words.
Result:
Mumbai, IND
1๏ธโฃ3๏ธโฃ CONCAT()
CONCAT() combines text.
Suppose:
First Name | Last Name
John | Smith
Formula:
Result:
John Smith
This is useful when you need to create:
โข Full names
โข IDs
โข Labels
โข Descriptions
1๏ธโฃ4๏ธโฃ TEXTJOIN()
TEXTJOIN() is particularly useful when combining multiple values with a delimiter.
Example:
Suppose:
A2 = John
B2 = Smith
C2 = India
Formula:
Result:
John, Smith, India
The second argument:
TRUE
tells Excel to ignore empty cells.
1๏ธโฃ5๏ธโฃ TEXTSPLIT()
Modern Excel includes TEXTSPLIT(), which is extremely useful for breaking text into multiple columns.
Suppose:
A2 = John,IT,Pune
Use:
Excel can split it into:
John | IT | Pune
This is particularly useful when data arrives in a delimited format.
1๏ธโฃ6๏ธโฃ Extract an Email Username
Suppose:
A2 = john.smith@gmail.com
You want:
john.smith
Using modern Excel:
Result:
john.smith
1๏ธโฃ7๏ธโฃ Extract an Email Domain
Using the same data:
john.smith@gmail.com
Use:
Result:
gmail.com
These modern text functions can make data preparation much easier.
1๏ธโฃ8๏ธโฃ Combining Text Functions
The real power comes from combining functions.
Suppose your data contains:
" JOHN SMITH "
You want:
John Smith
You could use:
First:
TRIM() removes unnecessary spaces.
Then:
PROPER() formats the name.
Result:
John Smith
1๏ธโฃ9๏ธโฃ Real-World Data Cleaning Example
Suppose your department column contains:
IT
IT
it
IT
It
These values may represent the same department.
You could standardize them with:
Results become:
IT
IT
IT
IT
IT
Now filtering, counting and lookups become much more reliable.
2๏ธโฃ0๏ธโฃ Data Quality Check Using Text Functions
Suppose all employee IDs should contain exactly 6 characters.
You can use:
If:
A2 = EMP001
Result:
Valid
If:
A2 = EMP01
Result:
Check
This is a simple example of using Excel for data-quality validation.
๐งช Practical Interview Challenge
Syntax:
=MID(text,start_num,num_chars)
Suppose:
EMP-001-IND
You want:
001
Use:
=MID(A2,5,3)
Result:
001
Because:
Start at character 5
Extract 3 characters
๐ FIND()
FIND() tells you where one piece of text appears inside another.
Example:
john.smith@gmail.com
You can find the position of @:
=FIND("@",A2)This returns the position of the @ character.
Why is this useful?
You can use the position to extract:
โข Email username
โข Domain
โข Product components
โข Codes
โข Identifiers
1๏ธโฃ1๏ธโฃ SEARCH()
SEARCH() is similar to FIND() but has some differences.
For example:
=SEARCH("india",A2)Unlike FIND(), SEARCH() is not case-sensitive.
Simple distinction:
FIND() โ Case-sensitive
SEARCH() โ Not case-sensitive
This difference can matter when cleaning real-world data.
1๏ธโฃ2๏ธโฃ SUBSTITUTE()
SUBSTITUTE() replaces specific text with another value.
Suppose:
A2 = Mumbai, India
You want to replace the comma with a hyphen.
=SUBSTITUTE(A2,",","-")
Result:
Mumbai- India
You can also replace words.
=SUBSTITUTE(A2,"India","IND")
Result:
Mumbai, IND
1๏ธโฃ3๏ธโฃ CONCAT()
CONCAT() combines text.
Suppose:
First Name | Last Name
John | Smith
Formula:
=CONCAT(A2," ",B2)
Result:
John Smith
This is useful when you need to create:
โข Full names
โข IDs
โข Labels
โข Descriptions
1๏ธโฃ4๏ธโฃ TEXTJOIN()
TEXTJOIN() is particularly useful when combining multiple values with a delimiter.
Example:
Suppose:
A2 = John
B2 = Smith
C2 = India
Formula:
=TEXTJOIN(", ",TRUE,A2:C2)Result:
John, Smith, India
The second argument:
TRUE
tells Excel to ignore empty cells.
1๏ธโฃ5๏ธโฃ TEXTSPLIT()
Modern Excel includes TEXTSPLIT(), which is extremely useful for breaking text into multiple columns.
Suppose:
A2 = John,IT,Pune
Use:
=TEXTSPLIT(A2,",")
Excel can split it into:
John | IT | Pune
This is particularly useful when data arrives in a delimited format.
1๏ธโฃ6๏ธโฃ Extract an Email Username
Suppose:
A2 = john.smith@gmail.com
You want:
john.smith
Using modern Excel:
=TEXTBEFORE(A2,"@")
Result:
john.smith
1๏ธโฃ7๏ธโฃ Extract an Email Domain
Using the same data:
john.smith@gmail.com
Use:
=TEXTAFTER(A2,"@")
Result:
gmail.com
These modern text functions can make data preparation much easier.
1๏ธโฃ8๏ธโฃ Combining Text Functions
The real power comes from combining functions.
Suppose your data contains:
" JOHN SMITH "
You want:
John Smith
You could use:
=PROPER(TRIM(A2))
First:
TRIM() removes unnecessary spaces.
Then:
PROPER() formats the name.
Result:
John Smith
1๏ธโฃ9๏ธโฃ Real-World Data Cleaning Example
Suppose your department column contains:
IT
IT
it
IT
It
These values may represent the same department.
You could standardize them with:
=UPPER(TRIM(A2))
Results become:
IT
IT
IT
IT
IT
Now filtering, counting and lookups become much more reliable.
2๏ธโฃ0๏ธโฃ Data Quality Check Using Text Functions
Suppose all employee IDs should contain exactly 6 characters.
You can use:
=IF(LEN(A2)=6,"Valid","Check")
If:
A2 = EMP001
Result:
Valid
If:
A2 = EMP01
Result:
Check
This is a simple example of using Excel for data-quality validation.
๐งช Practical Interview Challenge
โค4
Suppose you receive this dataset:
Employee
john smith
SARAH JONES
mike brown
DAVID WILSON
Task 1 โ Remove extra spaces
Task 2 โ Convert to proper case
Task 3 โ Count characters
Task 4 โ Convert to uppercase
Task 5 โ Extract the first 3 characters
๐ Key Lesson
Text functions aren't just about manipulating words.
For a Data Analyst, they're data-cleaning tools.
When you receive messy data, think:
Remove unwanted spaces โ Standardize โ Extract โ Replace โ Combine โ Validate
For example:
can turn:
" jOhN sMiTh "
into:
John Smith
That may look like a small task, but cleaning and standardizing data correctly is an important part of professional analytics.
Double Tap โค๏ธ For Part-7
Employee
john smith
SARAH JONES
mike brown
DAVID WILSON
Task 1 โ Remove extra spaces
=TRIM(A2)Task 2 โ Convert to proper case
=PROPER(TRIM(A2))Task 3 โ Count characters
=LEN(A2)Task 4 โ Convert to uppercase
=UPPER(A2)Task 5 โ Extract the first 3 characters
=LEFT(A2,3)๐ Key Lesson
Text functions aren't just about manipulating words.
For a Data Analyst, they're data-cleaning tools.
When you receive messy data, think:
Remove unwanted spaces โ Standardize โ Extract โ Replace โ Combine โ Validate
For example:
=PROPER(TRIM(A2))can turn:
" jOhN sMiTh "
into:
John Smith
That may look like a small task, but cleaning and standardizing data correctly is an important part of professional analytics.
Double Tap โค๏ธ For Part-7
โค9
๐ ๐๐ฅ๐๐ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ผ๐๐ฟ๐๐ฒ! ๐
Hereโs a great chance to learn valuable skills and earn a FREE Certificate ๐
โ Beginner-friendly
โ Learn Data Analytics skills
โ Free certification
โ Boost your resume & LinkedIn profile
โ Great for students & job seekers
๐๐ป๐ฟ๐ผ๐น๐น ๐๐ผ๐ฟ ๐๐ฅ๐๐๐ :-
https://pdlink.in/4qn5q94
๐ Start learning today & upgrade your career!
Hereโs a great chance to learn valuable skills and earn a FREE Certificate ๐
โ Beginner-friendly
โ Learn Data Analytics skills
โ Free certification
โ Boost your resume & LinkedIn profile
โ Great for students & job seekers
๐๐ป๐ฟ๐ผ๐น๐น ๐๐ผ๐ฟ ๐๐ฅ๐๐๐ :-
https://pdlink.in/4qn5q94
๐ Start learning today & upgrade your career!
๐4
๐ Data Analyst Roadmap โ Part 7
๐ Excel โ Level 6: Date & Time Functions for Data Analysis
Dates are everywhere in data analytics.
Think about datasets containing: Order dates, Transaction dates, Employee joining dates, Invoice dates, Payment dates, Due dates, Delivery dates, Project start/end dates, Customer registration dates
A Data Analyst often needs to answer questions such as:
To answer these questions, you need to understand Excel's date and time functions.
1๏ธโฃ How Excel Stores Dates
One important concept is that Excel stores dates as numbers internally.
For example, a date such as: 01-Jan-2026 is represented internally by a serial number.
This is why Excel can perform calculations such as: =B2-A2
If: A2 = 01-Jan-2026, B2 = 10-Jan-2026 the result can be: 9 meaning 9 days between the dates.
This is the foundation of date calculations in Excel.
2๏ธโฃ TODAY()
TODAY() returns the current date. =TODAY()
For example, if today's date is August 25, 2026, Excel returns: 25-Aug-2026
The value automatically changes when the date changes.
Common uses: Employee tenure, Age calculations, Overdue invoices, Days remaining, Current reporting period, Aging analysis
3๏ธโฃ NOW()
NOW() returns the current date and time. =NOW()
Example: 25-Aug-2026 01:38
The exact result depends on when Excel recalculates.
TODAY vs NOW:
TODAY() โ Current date, NOW() โ Current date + current time
4๏ธโฃ DATE()
DATE() creates a valid Excel date from year, month and day. =DATE(2026,8,25) Result: 25-Aug-2026
This is useful when dates need to be constructed from separate columns.
For example: Year: 2026, Month: 8, Day: 25 - You can create the date with: =DATE(A2,B2,C2)
5๏ธโฃ YEAR()
YEAR() extracts the year from a date. Suppose: A2 = 25-Aug-2026 Use: =YEAR(A2) Result: 2026
Common uses: Yearly reporting, Year-over-year analysis, Creating Year columns, Grouping transactions by year
6๏ธโฃ MONTH()
MONTH() extracts the month number. =MONTH(A2)
For: 25-Aug-2026 the result is: 8 because August is the eighth month.
7๏ธโฃ DAY()
DAY() extracts the day of the month. =DAY(A2)
For: 25-Aug-2026 result: 25
8๏ธโฃ Create Year, Month and Day Columns
Suppose you have: Order Date - 15-Jan-2026, 20-Feb-2026, 10-Mar-2026
You can create: Year: =YEAR(A2), Month Number: =MONTH(A2), Day: =DAY(A2)
This can help you analyze data by different time periods.
9๏ธโฃ EOMONTH()
EOMONTH() returns the last day of a month. Syntax: =EOMONTH(start_date,months)
Suppose: A2 = 15-Aug-2026
Use: =EOMONTH(A2,0) Result: 31-Aug-2026
Next month's end: =EOMONTH(A2,1) Result: 30-Sep-2026
Previous month's end: =EOMONTH(A2,-1) Result: 31-Jul-2026
๐ Why EOMONTH() Is Useful
It's extremely useful for: Month-end reporting, Financial reporting, Invoice analysis, Aging reports, Monthly dashboards, Closing processes
For example: "Give me all transactions up to the end of the reporting month." EOMONTH() becomes very useful here.
1๏ธโฃ1๏ธโฃ EDATE()
EDATE() moves a date forward or backward by a specified number of months.
Suppose: A2 = 25-Aug-2026
๐ Excel โ Level 6: Date & Time Functions for Data Analysis
Dates are everywhere in data analytics.
Think about datasets containing: Order dates, Transaction dates, Employee joining dates, Invoice dates, Payment dates, Due dates, Delivery dates, Project start/end dates, Customer registration dates
A Data Analyst often needs to answer questions such as:
How many orders were placed in January?
How long did customers wait for delivery?
Which month had the highest sales?
How many days overdue are invoices?
How many years has an employee worked?
To answer these questions, you need to understand Excel's date and time functions.
1๏ธโฃ How Excel Stores Dates
One important concept is that Excel stores dates as numbers internally.
For example, a date such as: 01-Jan-2026 is represented internally by a serial number.
This is why Excel can perform calculations such as: =B2-A2
If: A2 = 01-Jan-2026, B2 = 10-Jan-2026 the result can be: 9 meaning 9 days between the dates.
This is the foundation of date calculations in Excel.
2๏ธโฃ TODAY()
TODAY() returns the current date. =TODAY()
For example, if today's date is August 25, 2026, Excel returns: 25-Aug-2026
The value automatically changes when the date changes.
Common uses: Employee tenure, Age calculations, Overdue invoices, Days remaining, Current reporting period, Aging analysis
3๏ธโฃ NOW()
NOW() returns the current date and time. =NOW()
Example: 25-Aug-2026 01:38
The exact result depends on when Excel recalculates.
TODAY vs NOW:
TODAY() โ Current date, NOW() โ Current date + current time
4๏ธโฃ DATE()
DATE() creates a valid Excel date from year, month and day. =DATE(2026,8,25) Result: 25-Aug-2026
This is useful when dates need to be constructed from separate columns.
For example: Year: 2026, Month: 8, Day: 25 - You can create the date with: =DATE(A2,B2,C2)
5๏ธโฃ YEAR()
YEAR() extracts the year from a date. Suppose: A2 = 25-Aug-2026 Use: =YEAR(A2) Result: 2026
Common uses: Yearly reporting, Year-over-year analysis, Creating Year columns, Grouping transactions by year
6๏ธโฃ MONTH()
MONTH() extracts the month number. =MONTH(A2)
For: 25-Aug-2026 the result is: 8 because August is the eighth month.
7๏ธโฃ DAY()
DAY() extracts the day of the month. =DAY(A2)
For: 25-Aug-2026 result: 25
8๏ธโฃ Create Year, Month and Day Columns
Suppose you have: Order Date - 15-Jan-2026, 20-Feb-2026, 10-Mar-2026
You can create: Year: =YEAR(A2), Month Number: =MONTH(A2), Day: =DAY(A2)
This can help you analyze data by different time periods.
9๏ธโฃ EOMONTH()
EOMONTH() returns the last day of a month. Syntax: =EOMONTH(start_date,months)
Suppose: A2 = 15-Aug-2026
Use: =EOMONTH(A2,0) Result: 31-Aug-2026
Next month's end: =EOMONTH(A2,1) Result: 30-Sep-2026
Previous month's end: =EOMONTH(A2,-1) Result: 31-Jul-2026
๐ Why EOMONTH() Is Useful
It's extremely useful for: Month-end reporting, Financial reporting, Invoice analysis, Aging reports, Monthly dashboards, Closing processes
For example: "Give me all transactions up to the end of the reporting month." EOMONTH() becomes very useful here.
1๏ธโฃ1๏ธโฃ EDATE()
EDATE() moves a date forward or backward by a specified number of months.
Suppose: A2 = 25-Aug-2026
โค2
Six months later: =EDATE(A2,6) Result: 25-Feb-2027
Three months earlier: =EDATE(A2,-3) Result: 25-May-2026
Common uses: Contract expiry, Subscription dates, Loan schedules, Review dates, Employee milestones
1๏ธโฃ2๏ธโฃ Date Subtraction
One of the simplest but most useful date calculations is: =B2-A2
Suppose: Start Date: 01-Aug-2026, End Date: 10-Aug-2026 - Formula: =B2-A2 Result: 9 days
This is useful for calculating: Delivery time, Processing time, Turnaround time, Resolution time, Payment delays
1๏ธโฃ3๏ธโฃ Calculate Days Overdue
Suppose: Due Date: 20-Aug-2026
You want to know how many days overdue the payment is. You could use: =MAX(0,TODAY()-A2)
If today is after the due date, Excel calculates the overdue days. If the payment isn't overdue, it returns: 0
This is useful for invoice and payment analysis.
1๏ธโฃ4๏ธโฃ DATEDIF()
DATEDIF() calculates the difference between two dates in different units.
For example: =DATEDIF(A2,B2,"Y") returns the number of complete years.
DATEDIF Units
"Y" - Complete years. =DATEDIF(A2,B2,"Y")
"M" - Complete months. =DATEDIF(A2,B2,"M")
"D" - Total days. =DATEDIF(A2,B2,"D")
1๏ธโฃ5๏ธโฃ Employee Tenure Example
Suppose: Employee: John, Joining Date: 15-Jan-2022
To calculate completed years as of today: =DATEDIF(B2,TODAY(),"Y")
If today is after January 15, 2026, the result would be: 4 years
This is commonly used in HR analytics.
1๏ธโฃ6๏ธโฃ Calculate Years and Months Together
You can combine DATEDIF calculations.
=DATEDIF(B2,TODAY(),"Y")&" Years "&DATEDIF(B2,TODAY(),"YM")&" Months"
Example result: 4 Years 7 Months - This can be useful in employee reports.
1๏ธโฃ7๏ธโฃ NETWORKDAYS()
NETWORKDAYS() calculates the number of working days between two dates. It normally excludes: Saturday, Sunday
Example: =NETWORKDAYS(A2,B2)
This is very useful for: SLA analysis, Employee working days, Project duration, Processing time, Operational reporting
1๏ธโฃ8๏ธโฃ NETWORKDAYS() with Holidays
Suppose your company holidays are listed in: H2:H10
You can use: =NETWORKDAYS(A2,B2,H2:H10)
Now Excel excludes: Weekends, Listed holidays
This is extremely useful for real-world business calculations.
1๏ธโฃ9๏ธโฃ WORKDAY()
WORKDAY() calculates a future or previous working date.
Suppose a task starts on: 25-Aug-2026 and should take: 10 working days - Use: =WORKDAY(A2,10)
Excel returns the date after 10 working days, excluding weekends.
You can also provide holidays: =WORKDAY(A2,10,H2:H10)
2๏ธโฃ0๏ธโฃ MONTH-END Reporting Example
Suppose you're preparing a monthly sales report. You have: Order Date, Sales - You need to identify the month-end date for every transaction. Use: =EOMONTH(A2,0)
You can then use that month-end field for reporting and grouping.
2๏ธโฃ1๏ธโฃ Extract Month Name
MONTH() gives you a number. But sometimes you want: January instead of: 1
You can use: =TEXT(A2,"mmmm") Result: January
For abbreviated month: =TEXT(A2,"mmm") Result: Jan
2๏ธโฃ2๏ธโฃ Extract Year-Month
For reporting, you may want: 2026-08 - You can use: =TEXT(A2,"yyyy-mm")
This is useful for: Monthly trends, Grouping, Reporting, Time-series analysis
2๏ธโฃ3๏ธโฃ Important Date Problem: Dates Stored as Text
One common real-world problem is that something that looks like a date isn't actually stored as a date.
Three months earlier: =EDATE(A2,-3) Result: 25-May-2026
Common uses: Contract expiry, Subscription dates, Loan schedules, Review dates, Employee milestones
1๏ธโฃ2๏ธโฃ Date Subtraction
One of the simplest but most useful date calculations is: =B2-A2
Suppose: Start Date: 01-Aug-2026, End Date: 10-Aug-2026 - Formula: =B2-A2 Result: 9 days
This is useful for calculating: Delivery time, Processing time, Turnaround time, Resolution time, Payment delays
1๏ธโฃ3๏ธโฃ Calculate Days Overdue
Suppose: Due Date: 20-Aug-2026
You want to know how many days overdue the payment is. You could use: =MAX(0,TODAY()-A2)
If today is after the due date, Excel calculates the overdue days. If the payment isn't overdue, it returns: 0
This is useful for invoice and payment analysis.
1๏ธโฃ4๏ธโฃ DATEDIF()
DATEDIF() calculates the difference between two dates in different units.
For example: =DATEDIF(A2,B2,"Y") returns the number of complete years.
DATEDIF Units
"Y" - Complete years. =DATEDIF(A2,B2,"Y")
"M" - Complete months. =DATEDIF(A2,B2,"M")
"D" - Total days. =DATEDIF(A2,B2,"D")
1๏ธโฃ5๏ธโฃ Employee Tenure Example
Suppose: Employee: John, Joining Date: 15-Jan-2022
To calculate completed years as of today: =DATEDIF(B2,TODAY(),"Y")
If today is after January 15, 2026, the result would be: 4 years
This is commonly used in HR analytics.
1๏ธโฃ6๏ธโฃ Calculate Years and Months Together
You can combine DATEDIF calculations.
=DATEDIF(B2,TODAY(),"Y")&" Years "&DATEDIF(B2,TODAY(),"YM")&" Months"
Example result: 4 Years 7 Months - This can be useful in employee reports.
1๏ธโฃ7๏ธโฃ NETWORKDAYS()
NETWORKDAYS() calculates the number of working days between two dates. It normally excludes: Saturday, Sunday
Example: =NETWORKDAYS(A2,B2)
This is very useful for: SLA analysis, Employee working days, Project duration, Processing time, Operational reporting
1๏ธโฃ8๏ธโฃ NETWORKDAYS() with Holidays
Suppose your company holidays are listed in: H2:H10
You can use: =NETWORKDAYS(A2,B2,H2:H10)
Now Excel excludes: Weekends, Listed holidays
This is extremely useful for real-world business calculations.
1๏ธโฃ9๏ธโฃ WORKDAY()
WORKDAY() calculates a future or previous working date.
Suppose a task starts on: 25-Aug-2026 and should take: 10 working days - Use: =WORKDAY(A2,10)
Excel returns the date after 10 working days, excluding weekends.
You can also provide holidays: =WORKDAY(A2,10,H2:H10)
2๏ธโฃ0๏ธโฃ MONTH-END Reporting Example
Suppose you're preparing a monthly sales report. You have: Order Date, Sales - You need to identify the month-end date for every transaction. Use: =EOMONTH(A2,0)
You can then use that month-end field for reporting and grouping.
2๏ธโฃ1๏ธโฃ Extract Month Name
MONTH() gives you a number. But sometimes you want: January instead of: 1
You can use: =TEXT(A2,"mmmm") Result: January
For abbreviated month: =TEXT(A2,"mmm") Result: Jan
2๏ธโฃ2๏ธโฃ Extract Year-Month
For reporting, you may want: 2026-08 - You can use: =TEXT(A2,"yyyy-mm")
This is useful for: Monthly trends, Grouping, Reporting, Time-series analysis
2๏ธโฃ3๏ธโฃ Important Date Problem: Dates Stored as Text
One common real-world problem is that something that looks like a date isn't actually stored as a date.
โค1
For example: "25/08/2026" may be stored as text.
Then functions such as: =YEAR(A2) may not work as expected.
You need to ensure the value is converted into a genuine Excel date before performing calculations.
This is a crucial data-cleaning concept.
๐งช Practical Interview Challenge
Suppose you have:
Employee: John, Joining Date: 15-Jan-2022, End Date: 25-Aug-2026
Sarah, 20-Mar-2021, 25-Aug-2026
Mike, 10-Jul-2023, 25-Aug-2026
Q1. Extract the joining year: =YEAR(B2)
Q2. Extract the joining month: =MONTH(B2)
Q3. Calculate completed years: =DATEDIF(B2,C2,"Y")
Q4. Calculate total days: =C2-B2
Q5. Find month-end for joining month: =EOMONTH(B2,0)
Q6. Find six months after joining: =EDATE(B2,6)
Q7. Calculate working days: =NETWORKDAYS(B2,C2)
๐ Key Lesson
Dates aren't just values displayed on a spreadsheet. They allow you to analyze time.
A Data Analyst should be able to answer:
When did it happen? How long did it take? How many working days did it take? Which month did it happen in? Which quarter/year did it happen in? Is it overdue? When will it be due?
Once you become comfortable with date functions, you'll be able to build much more useful analysis around trends, aging, SLAs, employee tenure, financial periods and time-based KPIs.
Double Tap โค๏ธ For Part-8
Then functions such as: =YEAR(A2) may not work as expected.
You need to ensure the value is converted into a genuine Excel date before performing calculations.
This is a crucial data-cleaning concept.
๐งช Practical Interview Challenge
Suppose you have:
Employee: John, Joining Date: 15-Jan-2022, End Date: 25-Aug-2026
Sarah, 20-Mar-2021, 25-Aug-2026
Mike, 10-Jul-2023, 25-Aug-2026
Q1. Extract the joining year: =YEAR(B2)
Q2. Extract the joining month: =MONTH(B2)
Q3. Calculate completed years: =DATEDIF(B2,C2,"Y")
Q4. Calculate total days: =C2-B2
Q5. Find month-end for joining month: =EOMONTH(B2,0)
Q6. Find six months after joining: =EDATE(B2,6)
Q7. Calculate working days: =NETWORKDAYS(B2,C2)
๐ Key Lesson
Dates aren't just values displayed on a spreadsheet. They allow you to analyze time.
A Data Analyst should be able to answer:
When did it happen? How long did it take? How many working days did it take? Which month did it happen in? Which quarter/year did it happen in? Is it overdue? When will it be due?
Once you become comfortable with date functions, you'll be able to build much more useful analysis around trends, aging, SLAs, employee tenure, financial periods and time-based KPIs.
Double Tap โค๏ธ For Part-8
โค7