Excel - PPT

Lookup Functions, Count functions and Customization of functions 

Apply the VLOOKUP Function

Task: Retrieve the department of an employee using their Emp ID.

This searches for the Emp ID in column A and returns the corresponding department from column C. 

Select Your Table:

Copy the Table:

Choose a New Location:

Paste as Transposed:

To retrieve the Salary for a specific Emp ID, use:

excel

Copy code

=HLOOKUP(G2, A1:F5, 4, FALSE)



Explanation:


Why HLOOKUP Works:


Retrieve the Salary using INDEX

In H2 (or any empty cell), type the following formula:
excel
Copy code
=INDEX(A2:F6, 4, MATCH(G2, A1:F1, 0))



Explanation:


Expected Result:


Apply COUNT Function

We will start with a simple COUNT function to calculate the total number of employees in the table.

Task: Count the total number of employees.

In cell G2, enter the formula:
excel
Copy code
=COUNTA(A2:A11)


Expected Result:


Apply COUNTIF Function

Now let’s count how many employees are in a specific Department (e.g., IT).


Task: Count the number of employees in the IT Department.

In cell G4, enter the formula:
excel
Copy code
=COUNTIF(C2:C11, "IT")


Expected Result:


Apply COUNTIF Function

Now let’s count how many employees are in a specific Department (e.g., IT).


Task: Count the number of employees in the IT Department.

In cell G4, enter the formula:
excel
Copy code
=COUNTIF(C2:C11, "IT")


Expected Result:


Create Subtotals

We will now create subtotals to calculate the total salary for each Department.


Task: Create subtotals for Salary grouped by Department.


Apply Data Filtering

We will now filter the table to display specific records, such as employees in the IT department with salaries greater than 70,000.


Task: Filter the table based on Department = IT and Salary > 70,000.


Expected Outcome:

The filtered table will only show employees in the IT Department with salaries greater than 70,000:


Insert Slicers for Dynamic Filtering

Slicers allow you to interactively filter data in an Excel table, providing a visual way to filter by fields such as Department or Joining Year.


Task: Add slicers to filter the table by Department and Joining Year.


Expected Outcome:


=IF(OR(A2="", ISBLANK(A2)), "No Email", B2) 

Enter this formula:
excel
Copy code
=OR(ISBLANK(A2), ISBLANK(B2), ISBLANK(C2), ISBLANK(D2))



Formula 1: SUMIFS

Task: Calculate the total sales for "Marketing" in Q1, Q2, and Q3.


=SUMIFS(C2:C6, B2:B6, "Marketing") + SUMIFS(D2:D6, B2:B6, "Marketing") + SUMIFS(E2:E6, B2:B6, "Marketing")

import pandas as pd

data = {

    "Name": ["John", "Alice", "Bob", "Diana", "Charles"],

    "Department": ["Marketing", "Sales", "IT", "HR", "Finance"],

    "Sales (Q1)": [15000, 25000, 18000, 12000, 17000],

    "Sales (Q2)": [20000, 23000, 19000, 14000, 16000],

    "Sales (Q3)": [18000, 22000, 20000, 13000, 15000],

}

df = pd.DataFrame(data)

df

marketing_sales = df[df['Department'] == 'Marketing']

total_marketing_sales = marketing_sales[['Sales (Q1)', 'Sales (Q2)', 'Sales (Q3)']].sum().sum()

print("Total Sales for Marketing:", total_marketing_sales)


Formula: INDEX-MATCH with Multiple Criteria

Task: Find the Q2 sales for the employee in the "Marketing" department.


=INDEX(D2:D6, MATCH("Marketing", B2:B6, 0))


Explanation:

import pandas as pd

data = {

    "Name": ["John", "Alice", "Bob", "Diana", "Charles"],

    "Department": ["Marketing", "Sales", "IT", "HR", "Finance"],

    "Sales (Q1)": [15000, 25000, 18000, 12000, 17000],

    "Sales (Q2)": [20000, 23000, 19000, 14000, 16000],

    "Sales (Q3)": [18000, 22000, 20000, 13000, 15000],

}

df = pd.DataFrame(data)

department_to_find = "Marketing"

q2_sales = df.loc[df['Department'] == department_to_find, 'Sales (Q2)'].values[0]

print(f"Q2 Sales for the {department_to_find} department: {q2_sales}")

Formula: ARRAYFORMULA for Conditional Summing Across Columns

Task: Find the total sales (Q1, Q2, and Q3) for the "Sales" department.

=SUMPRODUCT((B2:B6="Sales")*C2:E6) 


Explanation:

import pandas as pd

data = {

    "Name": ["John", "Alice", "Bob", "Diana", "Charles"],

    "Department": ["Marketing", "Sales", "IT", "HR", "Finance"],

    "Sales (Q1)": [15000, 25000, 18000, 12000, 17000],

    "Sales (Q2)": [20000, 23000, 19000, 14000, 16000],

    "Sales (Q3)": [18000, 22000, 20000, 13000, 15000],

}

df = pd.DataFrame(data)

department_to_find = "Sales"

total_sales = df.loc[df['Department'] == department_to_find, ['Sales (Q1)', 'Sales (Q2)', 'Sales (Q3)']].sum().sum()

print(f"Total Sales for the {department_to_find} department: {total_sales}")


Formula: TEXTJOIN with Conditional Logic

Task: List all employee names from the "IT" and "Finance" departments, separated by commas.

Formula:

excel

Copy code

=TEXTJOIN(", ", TRUE, IF((B2:B6="IT")+(B2:B6="Finance"), A2:A6, ""))


Explanation:


import pandas as pd

data = {

    "Name": ["John", "Alice", "Bob", "Diana", "Charles"],

    "Department": ["Marketing", "Sales", "IT", "HR", "Finance"],

    "Sales (Q1)": [15000, 25000, 18000, 12000, 17000],

    "Sales (Q2)": [20000, 23000, 19000, 14000, 16000],

    "Sales (Q3)": [18000, 22000, 20000, 13000, 15000],

}

df = pd.DataFrame(data)

departments_to_find = ["IT", "Finance"]

filtered_names = df[df['Department'].isin(departments_to_find)]['Name']

result = ", ".join(filtered_names)

print(f"Employees in IT or Finance: {result}")


import pandas as pd


# Create the dataset directly in Colab

data = {

    "Name": ["John Doe", "Jane Smith", "John Doe", "Alex Johnson", None, "Emily Davis"],

    "Email": ["john.doe@example.com", "jane.smith@example.com", None, "alex.j@example.com", "NA", "emily.d@example.com"],

    "Phone": ["123-456-7890", "987-654-3210", "123-456-7890", "567-890-1234", "456-789-0123", None],

    "Address": ["New York", "Los Angeles", "New York", "Chicago", "NA", None]

}


# Convert to DataFrame

df = pd.DataFrame(data)


# Display the DataFrame

print(df)



from google.colab import files uploaded = files.upload() 

# This will prompt you to upload your CSV file 


import pandas as pd 


# Load the CSV file 

df = pd.read_csv("data.csv") 


# Display the DataFrame 

print(df) 


Month Sales

Jan 200

Feb 220

Mar 250

Apr 280

May 300

Jun 310

Jul 320

Aug 350

Sep 370

Oct 390

Nov 400

Dec 420

=FORECAST(13, B2:B13, ROW(A2:A13)) 

=TREND(B2:B13, ROW(A2:A13), 13) 

EMP ID =and(isnumber(B5),len(B5)=3)

name =istext(H5)

email id =isnumber(match("*@*.?*",b8,0))

aadhar no. =and(isnumber(H8),len(H8)=12)


In Excel, the formula you’ve mentioned =ISNUMBER(MATCH("*@*.?*",B8,0)) is designed for data validation using a custom formula. Here's a detailed breakdown of how it works and what it’s intended to do:

Purpose of the Formula:

The formula aims to check whether the value entered in cell B8 is a valid email format, as it contains the basic elements of an email address (an "@" symbol and a domain with a period). However, this particular formula is not entirely correct for email validation, but I'll explain what each part does and how to adjust it for better functionality.

Breakdown of the Formula:

less

Copy code

=ISNUMBER(MATCH("*@*.?*",B8,0))


Potential Issue:

The pattern *@*.?* does not fully validate the structure of an email because it doesn't strictly enforce the format of an email address (e.g., it might allow inputs like "abc@.com"). A better pattern would need to be stricter, ensuring that characters appear before and after the "@" and period symbols.

Recommended Improvement:

To properly validate an email format in Excel's Data Validation with a custom formula, you can use the following formula, which is more robust:

Better Formula for Email Validation:

excel

Copy code

=AND(ISNUMBER(FIND("@",B8)), ISNUMBER(FIND(".",B8, FIND("@",B8))))


Explanation:

If both conditions are met, the formula returns TRUE (valid email format), otherwise, it returns FALSE (invalid format).

How to Apply This Formula in Data Validation:

In the Formula field, paste the improved formula:
excel
Copy code
=AND(ISNUMBER(FIND("@",B8)), ISNUMBER(FIND(".",B8, FIND("@",B8))))


Now, the cell will only allow inputs that meet the basic structure of an email address.

Summary:


https://www.youtube.com/watch?v=WtC9w9j-NCE&t=15s&pp=ygUYcG93ZXIgcG9pbnQgaHlwZXJsaW5raW5n

https://www.youtube.com/watch?v=kpCEP6r3L4U&t=916s&ab_channel=DeepakEduWorld