0% found this document useful (0 votes)
10 views10 pages

Advance Excel Notes

The document provides advanced Excel notes covering key concepts such as absolute and relative references, the IF function, data validation, pivot tables, and Power Pivot. It includes practical applications and examples for each topic to enhance understanding. Additionally, it features student feedback on the SkillEcted courses, highlighting the effectiveness of the teaching methods and the supportive learning environment.

Uploaded by

aliasphantom456
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views10 pages

Advance Excel Notes

The document provides advanced Excel notes covering key concepts such as absolute and relative references, the IF function, data validation, pivot tables, and Power Pivot. It includes practical applications and examples for each topic to enhance understanding. Additionally, it features student feedback on the SkillEcted courses, highlighting the effectiveness of the teaching methods and the supportive learning environment.

Uploaded by

aliasphantom456
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

ADVANCE

EXCEL WITH AI

BECOME EXPERT AT EXCEL BY SKILLECTED


Advance Excel Notes
1. ABSOLUTE AND RELATIVE REFERENCES
In Excel, cell references play a crucial role in determining how formulas interact with data

across the spreadsheet. Understanding absolute, relative, and mixed references helps you

maintain control over your formulas when copying or dragging them to other cells.
Types of References:
Absolute Reference ($A$1): This reference does not change, regardless of where the

formula is copied. Absolute references are useful when you have a constant value or

cell that must be included in multiple calculations, like a fixed tax rate or an exchange

rate.

Example: If you want every formula in a range to use the tax rate stored in cell $C$2,

you would use $C$2 in your formula. Even when copied, it will always reference cell C2.

Relative Reference (A1): This is the default referencing mode in Excel. When you copy a

formula with a relative reference, the reference adjusts to its new location. Relative

references are ideal for calculations that need to adapt to new locations, like summing

rows or columns.

Example: If you copy a formula =A1 + B1 from cell C1 to C2, the formula changes to =A2

+ B2.

Mixed Reference ($A1 or A$1): Mixed references fix either the row or the column while

allowing the other to change.

$A1: Keeps the column (A) fixed, while the row adjusts.

A$1: Keeps the row (1) fixed, while the column adjusts.

Example: If you are applying a formula to rows but want a column to remain constant

(like a commission rate in column C), use $C1 to keep only the column constant.
Practical Uses:

Financial Modeling: Use absolute references for fixed costs or rates, while allowing

relative references for variable costs across time periods.

Data Consistency: Lock certain cells, such as those containing constants or reference

values, to avoid accidental changes in complex calculations.


Advance Excel Notes
2. IF FUNCTION
The IF function in Excel allows you to apply logic-based conditions, making it a versatile

tool for decision-making within your worksheets. With IF, you can instruct Excel to perform

specific actions based on whether a condition is met or not.


Syntax:
=IF(logical_test, value_if_true, value_if_false)
logical_test: The condition you want to evaluate (e.g., A1 > 10).

value_if_true: The result if the condition is true.

value_if_false: The result if the condition is false.

Examples of Using IF:

1. Basic IF:

Formula: =IF(B2 >= 50, "Pass", "Fail")

Explanation: If the value in B2 is 50 or greater, the result will be "Pass." Otherwise, it

returns "Fail."

2. Nested IF:

Formula: =IF(B2 > 90, "A", IF(B2 > 80, "B", IF(B2 > 70, "C", "D")))

Explanation: Here, multiple conditions categorize scores into letter grades.

3. IF with AND/OR:

Formula: =IF(AND(B2 >= 50, C2 >= 50), "Eligible", "Not Eligible")

Explanation: Using AND with IF, the formula returns "Eligible" only if both conditions

(B2 and C2 are 50 or greater) are true.

Practical Applications:

Error Checking: Use IF to handle errors, like dividing by zero. For example, =IF(C2=0,

"Error", B2/C2).

Conditional Discounts: Apply conditional discounts or bonuses based on sales

performance.

Data Categorization: Sort items into categories (e.g., “High,” “Medium,” “Low”) based on

numerical ranges.
Advance Excel Notes
3. DATA VALIDATION
Data validation allows you to control what a user can enter into a cell, reducing errors and

enforcing data integrity. Excel’s data validation feature can restrict entries to specific types

(like whole numbers, decimals, dates), create dropdown lists, or apply custom formulas.
Types of Data Validation:
1. Whole Numbers: Restrict entries to integers within a specified range.

Example: Limit entries between 1 and 100 to ensure a value is within a valid range.

2. Decimal: Allow decimal entries within a range.

Example: Require values between 0.1 and 1 for percentages.

3. List: Create a dropdown menu to limit selections to predefined options.

Example: Allow only “Yes,” “No,” or “Maybe” as responses in a survey.

4. Date: Restrict entries to dates, including specific ranges or formats.

Example: Ensure only dates within a fiscal quarter are entered in a specific field.

5. Custom Formula: Use formulas to create advanced validation.

Example: =ISNUMBER(A1) allows only numeric values in cell A1.

How to Set Up Data Validation:

1. Select the cells where you want to apply validation.

2. Go to the Data tab -> Data Validation.

3.In the Settings tab, choose the validation type (e.g., List, Whole Number).

4.Define the criteria, such as the range of acceptable values.

5.Optionally, add an Input Message (instructions) and an Error Alert (message shown if data

violates rules).

Practical Examples:

Drop-down Lists: Used in survey forms, expense reports, or inventory sheets to

standardize data entry.

Restricting Numbers or Dates: In financial forecasting, ensure all values are positive or

within a specific date range.

Validation Based on Formulas: For complex entries, such as requiring that a start date

precedes an end date.


Advance Excel Notes
4. PIVOT TABLE
A pivot table is a powerful tool in Excel for summarizing, analyzing, exploring, and presenting

data. It enables you to reorganize and aggregate data dynamically without altering the

original dataset.
Steps to Create a Pivot Table:

1. Select your dataset and go to Insert -> Pivot Table.

2. Choose where to place the table (in a new worksheet or existing one).

3. In the PivotTable Field List, drag fields to Rows, Columns, Values, and Filters to

customize the layout.

Rows: Categories you want to organize vertically (e.g., Product or Date).

Columns: Categories to organize horizontally.

Values: Data you want to analyze (e.g., Total Sales).

Filters: Adds filtering options to the table for refined data views.

Customizing the Pivot Table Layout:

Grouping: Group data by time intervals (e.g., months, quarters) or custom categories.

Summarization: Use options like Sum, Count, Average to summarize your data fields.

Calculated Fields: Add custom calculations that are not in your original dataset (e.g.,

profit margin).

Practical Applications:

Sales Analysis: Summarize sales by region, time period, or salesperson to track

performance.

Inventory Management: Monitor stock levels by product and warehouse location.

Financial Reporting: Generate summaries of revenue, expenses, and profit based on

different factors.
Advance Excel Notes
5. POWER PIVOT
Power Pivot extends Excel’s capabilities to handle larger datasets and perform complex data

modeling. It enables you to import large amounts of data from various sources and create

relationships between different tables, allowing for in-depth analysis.


Enabling Power Pivot:

1. Go to File -> Options -> Add-ins.

2. Select COM Add-ins, then check Power Pivot and click OK.

Key Features:

Data Modeling: Import data from multiple sources and build relationships between

tables (like linking a sales table to a customer table by Customer ID).

Relationships: Connect tables through a shared field, enabling multi-table analysis.

DAX (Data Analysis Expressions): A formula language for Power Pivot to perform

calculations.

DAX Examples:

SUMX: Sums values in a row context.

SUMX(Sales, Sales[Quantity] * Sales[UnitPrice])

CALCULATE: Changes the filter context of a calculation.

CALCULATE(SUM(Sales[TotalSales]), Year[Year] = 2024)

RELATED: Retrieves values from related tables.

RELATED(Products[ProductName]) brings the product name into a sales report.

Practical Applications:

Financial Analysis: Compare actual vs. forecasted sales, track profitability by product

and region, and use time intelligence for year-over-year growth.

Sales and Marketing: Connect customer data with sales and advertising spends to

determine ROI.

Inventory Management: Track supply chain performance by linking inventory and sales

data tables, calculating metrics like inventory turnover and lead time
Student Feedback for skillected Courses:-

Rutika Rathod Pranjli Jadhav

I joined the classes in April and have learned a lot since then.
The teaching was excellent, with a friendly and supportive
The teaching is excellent, and the class atmosphere is very
environment. Tutors were helpful, and the curriculum was
friendly. I understand all the concepts well and gain extra
outstanding. Every student secured placements in top companies.
knowledge beyond the syllabus.

Dipali Hanmant Heena Harkare


SkillEcted teachers are excellent. They simplify complex concepts,
Your teaching method is excellent and easy to understand. The making them easy to understand. Their engaging examples and
use of multimedia resources effectively enhances the lessons. real-world applications make lessons interesting and relevant.
You also provide extra knowledge in the technical field. I have Students feel comfortable asking questions, knowing these
no experience with the placement process. teachers will resolve them with practical examples. Their ability to
inspire and motivate is remarkable. Thank you for your dedication
and support.

Vaishnavi Swami

It's been a few days since I joined SkillEcted, and I've realized that the teaching
here is exceptional. The instructors help us understand difficult concepts by
using real-world examples. They are very friendly, encouraging us to ask
questions without any hesitation. Any doubts we have are promptly addressed
with practical examples, making the learning experience very effective.
Our Courses / Expert Teachers
Placed students
Contact
us
Enquiry at
[email protected]
[email protected]
[email protected]
+91 72190 06083
+91 72767 34948

Follow Us on Social
Media
Let's Get Connected for Our Latest News & Updates

on linkedin @SkillEcted

on Facebook @skillected

on Insta @skillected.com_

on Youtube @Skillected

Our 1) Ashiyana Park Liberty Phase 2, Ragvilas Society, KP, Pune, 411001
Location 2) Wargade Complex,Nandanvan Chowk, Nagpur-440009

You might also like