Advanced Excel Nme Unit
Advanced Excel Nme Unit
Creating Pivot tables Formatting and customizing Pivot tables- advanced options of
Pivot tables- Pivot charts- Consolidating data from multiple sheets and files using
III Pivot tables- external data sources- data consolidation feature to consolidate data-
Show Value As % of Row, % of Column, Running Total, Compare with Specific
Field- Viewing Subtotal under Pivot- Creating Slicers.
More Functions Date and time functions- Text functions- Database functions-
Power Functions - Formatting Using auto formatting option for worksheets- Using
IV
conditional formatting option for rows, columns and cells- WhatIf Analysis - Goal
Seek- Data Tables- Scenario Manager.
Charts - Formatting Charts- 3D Graphs- Bar and Line Chart together- Secondary
Axis in Graphs- Sharing Charts with PowerPoint / MS Word, Dynamically- New
V
Features Of Excel Sparklines, Inline Charts, data Charts- Overview of all the new
features.
UNIT - 1
Introduction to MS Excel
What is a Cell ?
A spreadsheet takes the shape of a table, consisting of rows and columns.
A cell is created at the intersection point where rows and columns meet,
forming a rectangular box. Here’s an image illustrating what a cell looks
like:
Excel is used to store, analyze, and report on large amounts of data. It is often
used by accounting teams for financial analysis, but can be used by any
professional to manage long and unwieldy datasets.
Examples of Excel applications include balance sheets, budgets, or editorial
calendars.
What you can't customize: You can't reduce the size of your ribbon, or the size of
the text or the icons on the ribbon. The only way to do this is to change your display
resolution, which would change the size of everything on your page.
When you customize your ribbon: Your customizations apply only to the Office
program you're working in at the time. For example, if you personalize your ribbon
in PowerPoint, those same changes won't be visible in Excel. If you want similar
customizations in your other Office apps, you'll have to open each of those apps to
make the same changes. Although you can't share customizations between apps, you
can export your customizations to share with others or use on other devices.
The tabs on your ribbon are Home, Insert, Design, etc. For example, the picture
below shows the tabs in Word.
You can add custom tabs or rename and change the order of the default tabs that are
built in to Office. Custom tabs in the Customize the Ribbon list have (Custom) after
the name, but the word (Custom) does not appear in the ribbon.
Open the "Customize the Ribbon" window
To work with your ribbon, you need to get to the Customize the Ribbon window.
Here's how you do that.
1. Open the app you want to customize your ribbon in, such
as PowerPoint or Excel.
2. Place your mouse in any empty space in the ribbon and then right-click.
Excel Relative
1. Relative references
2. Absolute references
References are relative by default, and are without dollar sign ($).
The relative reference makes the cells reference free. It gives the fill function
freedom to continue the order without restrictions.
Let's have a look at a relative reference example, helping the Pokemon trainers to
count their Pokeballs (B2:B7) and Great balls (C2:C7).
The references being relative allows the fill function to continue the formula for
rows downwards.
Have a look at the formulas in D2:D7. Notice that it calculates the next row as you
fill.
1. Select all cells in the worksheet by clicking the Select All button,
found above the row numbers and to the left of the column headers.
2. Press Ctrl+1 to open the Format Cells window. You can also
use Ctrl+Shift+F combination to open the Format Cells window.
4. Uncheck the box for the Locked option, then click OK.
5. In the worksheet, select the cell you want to lock and protect.
7. Click the Protection tab, check the box for the Locked option, then
click OK.
11.In the Allow all users of this worksheet to section, make sure only the box for
the Select unlocked cells option is checked, then click OK.
12. Enter the password again in the Confirm Password window and click OK.
3. In the Unprotect Sheet sheet window that pops up, enter the
password to unlock the worksheet, then click OK.
Working with Functions
One of the key benefits of functions is that they can save you time because
you do not have to write the formula yourself.
The parts of a function :The order in which you insert a function is important. Each
function has a specific order—called syntax—which must be followed in order for
the function to work correctly. The basic syntax to create a formula with a function
is to insert an equals sign (=), function name (SUM, for example, is the function
name for addition), and argument. Arguments contain the information you want the
formula to calculate, such as a range of cell references.
Working with arguments
A great place to explore functions is in the Function Library on the Formulas tab.
Here, you can search and select Excel functions based on categories such
as Financial, Logical, Text, and Date & Time.
Examples:
A3>14 Whether the contents of cell A3 are larger than the number 14
D5<=2 Whether the contents of cell D5 are less than or equal to the number
2
T47=”cheese” Whether the cell T47 contains the the word cheese
There are six types of conditional functions covered by this course. Each has a
specific use and syntax.
IF
=if(condition,value_if_true,value_if_false)
If the given condition is true, the cell will be set to the “value_if_true.” If the
condition is false, the cell will be set to the “value_if_false,” if “value_if_false” is
left blank, the cell will be set to “FALSE” by default.
Example:
Nested IF Functions
An interesting addition to the “if” function is the ability to nest one “if” function
inside of another. A single “if” function, without the use of any other functions, can
only test for a single condition. A nested if statement can be more specific by testing
another condition.
Example:
Test the condition of whether the contents of cell A2 are between 1 and 3.
The completed function will test whether the value of A2 is larger than 3. If it is, the
active cell will be set to “Number too large.” If A2 is less than 3, it will be tested to
see if the value of A2 is less than 1. If it is, the active cell is set to “Number too
small.” Otherwise, we know that the value of A2 must be between 1 and 3, so the
active cell is set to “Just right!”
COUNTIF
=countif(range,criteria)
The “countif” function will increment the active cell by one each time the criteria
is true for a cell in the given range.
Example:
You want to know how many universities have “red” as one of their school colors,
and have compiled a database of schools and their colors in Excel.
If a cell in F1:F230 satisfies “=red”, then increment the active cell by one.
SUMIF
=sumif(range,criteria,sum_range)
The “sumif” function utilizes a range and a corresponding sum_range of the same
size. Each time the criteria is true, the active cell will be incremented by the value
in the corresponding cell in the sum_range. If “sum_range” is not specified, excel
will treat “range” as “sum_range” as well.
AND and OR
=AND(condition, condition)
=OR(condition, condition)
Function Description
AND function Returns TRUE if all of its arguments are TRUE
BYCOL Applies a LAMBDA to each column and returns an array of the results
function
BYROW Applies a LAMBDA to each row and returns an array of the results
function
FALSE Returns the logical value FALSE
function
IF function Specifies a logical test to perform
IFERROR Returns a value you specify if a formula evaluates to an error; otherwise, returns the
function result of the formula
IFNA function Returns the value you specify if the expression resolves to #N/A, otherwise returns the
result of the expression
IFS function Checks whether one or more conditions are met and returns a value that corresponds to
the first TRUE condition.
LAMBDA Create custom, reusable functions and call them by a friendly name
function
LET function Assigns names to calculation results
MAKEARRAY Returns a calculated array of a specified row and column size, by applying a LAMBDA
function
MAP function Returns an array formed by mapping each value in the array(s) to a new value by
applying a LAMBDA to create a new value
NOT function Reverses the logic of its argument
OR function Returns TRUE if any argument is TRUE
Logical functions
Function Description
ADDRESS Returns a reference as text to a single cell in a worksheet
function
AREAS function Returns the number of areas in a reference
CHOOSE function Chooses a value from a list of values
CHOOSECOLS Returns the specified columns from an array
function
CHOOSEROWS Returns the specified rows from an array
function
COLUMN Returns the column number of a reference
function
COLUMNS Returns the number of columns in a reference
function
DROP function Excludes a specified number of rows or columns from the start or end of an array
EXPAND function Expands or pads an array to specified row and column dimensions
FILTER function Filters a range of data based on criteria you define
FORMULATEXT Returns the formula at the given reference as text
function
Function Description
GETPIVOTDATA Returns data stored in a PivotTable report
function
HLOOKUP Looks in the top row of an array and returns the value of the indicated cell
function
HSTACK function Appends arrays horizontally and in sequence to return a larger array
HYPERLINK Creates a shortcut or jump that opens a document stored on a network server, an
function intranet, or the Internet
INDEX function Uses an index to choose a value from a reference or array
INDIRECT Returns a reference indicated by a text value
function
LOOKUP function Looks up values in a vector or array
MATCH function Looks up values in a reference or array
OFFSET function Returns a reference offset from a given reference
ROW function Returns the row number of a reference
ROWS function Returns the number of rows in a reference
RTD function Retrieves real-time data from a program that supports COM automation
SORT function Sorts the contents of a range or array
SORTBY function Sorts the contents of a range or array based on the values in a corresponding range o
array
VLOOKUP Looks in the first column of an array and moves across the row to return the value o
function cell
Vertical lookup, often known as VLOOKUP, is one of the most popular functions
in Excel. It’s specifically designed to navigate through database sources and tables
to retrieve data.
The function performs vertical searches down a specific column by looking for a
value in the first column of a table and returning a value on the same row in a
specific column.
VLOOKUP syntax
Here’s the syntax of VLOOKUP:
Lookup_value
The value to lookup in the leftmost column of a table.
Table_array
The range of cells that contains the data.
Col_index_num
The number of the column in the table, from which the matching value must be
returned. The first column is 1, the second column is 2, and so on.
[Range_lookup]
It’s optional — not necessary to enter. This is the parameter used to define exact
match or approximate match. Should you wish to specify, there are two options:
VLOOKUP example
A customer data analyst has been given the data set below and asked to look up the
city of three particular clients by using their client ID, under column
G.
To compose the formula in cell H2, let’s break it down in arguments:
Lookup_value
100002 is the first client to lookup, so the lookup_value is cell G2.
Table_array
The table from which the value is available is within A1:E11.
[Range_lookup]
In the meantime, let’s enter FALSE – exact match.
What is exact match in VLOOKUP and how to use it
In most scenarios, exact match is employed when using VLOOKUP, especially
when a unique value is the lookup value.
Given that the lookup value is available in the leftmost column of the table provided,
an exact match is employed in this VLOOKUP example.
This time VLOOKUP is to lookup value 20606 or E2 in the leftmost column of the
table array given — A:C.
What is approximate match in VLOOKUP and how to use it
Column E is “Salesman”,
Column F is “Sales”
While column G is “Product”.
Column I is “Product”
Column J is “Sales”.
As a result, we want to get sales value in the third table (column J), depending on a
product (column I).
Microsoft Excel has several built-in data validation rules for numbers, dates and
text, but they cover only the most basic scenariosSelect one or more cells to
validate.
1. Open the Data Validation dialog box. For this, click the Data
Validation button on the Data tab, in the Data Tools group or press the
key sequence Alt > D > L (each key is to be pressed separately).
2. On the Settings tab of the Data Validation dialog window,
select Custom in the Allow box, and enter your data validation formula in
the Formula box.
3. Click OK.
Creating and using templates A template is a model that you use to create other
documents. For example, you can create a template for business reports that has
your company’s logo on the first page. New documents created from this template
will all have your company’s logo on the first page. Templates can contain
anything that regular documents can contain, such as text, graphics, and formatting
styles.
• Create documents from a template.
• Create templates.
• Edit templates.
• Set a default template.
Creating documents from a template
To create a document from a template, follow these steps:
1) From the main menu, choose File > New > Templates and Documents. The
Templates and Documents window opens.
2) In the box on the left, click the Templates icon if it isn’t already selected. A list
of template folders appears in the center box.
3) Double-click the folder that contains the template that you want to use. A list of
all the templates contained in that folder appears in the center box.
4) Click the template that you want to use. You can preview the selected template
or view the template’s properties:
• To preview the template, click the Preview icon.
• To view the template’s properties, click the Properties icon.
5) Click Open. The Templates and Documents window closes and a new
document based on the selected template opens in Writer. You can then edit and
save the new document just as you would any other document.
Creating template folders
To create an OpenOffice.org template folder, follow these steps:
1) From the main menu, choose File > Templates > Organize. The Template
Management window opens.
2) In the box on the left, click any folder.
3) Click the Commands button. The context menu appears.
4) From the context menu, choose New. A new folder called Untitled appears.
5) Type a name for the new folder and then press the Enter key on your keyboard.
Writer saves the folder with the name that you entered.
6) To close the Template Management window, click Close.
Deleting template folders
To delete an OpenOffice.org template folder, follow these steps:
1) From the main menu, choose File > Templates > Organize. The Template
Management window opens.
2) In the box on the left, click the folder that you want to delete.
3) Click the Commands button. The context menu appears.
4) From the context menu, choose Delete. A dialog box appears and asks you to
confirm the delete.
5) Click Yes. The dialog box closes and the selected folder is deleted.
Units II
Data Validations - Specifying a valid range of values - Specifying a list of valid values-
Specifying custom validations based on formula - Working with Templates Designing
the structure of a template- templates for standardization of worksheets - Sorting
and Filtering Data -Sorting tables- multiple-level sorting- custom sorting- Filtering
data for selected view - advanced filter options- Working with Reports Creating
subtotals- Multiple-level subtotal.
Data Validation
Data Validation in Excel is used to control the type of data entered into a cell,
helping to ensure data integrity. This includes specifying a range of valid values, using
predefined lists, or creating custom validation rules with formulas.
How to do Data Validation in Excel
The data validation function can be found in the DATA tab from the Excel
ribbon(as seen in the picture below).
Step 1: Click on the Data Tab in the Ribbon.
Step 2: Now select Data Validation.
To apply data validation with a word limit of 3-7 characters for the Name cell.
Step 1: Select the empty cell in front of the Name.
Step 2: From the DATA tab in the ribbon, select Data Validation.
Step 3: A Dialogue box will appear.
Step 4: In the dialogue box from the setting tab, in the dropdown, select Text
Length (as shown in the image below).
Step 5: We want our user to enter the name between 3-7 characters, So in
the Minimum column we’ll write 3 and in the Maximum column we’ll write 7 and
then click OK.
The Name row will now accept only text between 3-7 characters.
To use Data Validation as Date of Birth
Step 6: Select the cell in front of Data of Birth in Excel.
Step 7: Repeat steps 2 and 3.
Step 8: In this step, instead of selecting text length, you need to select Date (as shown
in the image below).
If you want the user must be born between 1st January 2000 to 1st January
2021. Enter the Start date as 1st January 2000 and the End date as 1st January 2021.
You want to add “Kanpur”, “Agra”, “Aligarh”, “Lucknow”, “Varanasi” to the list.
Step 13: Add the names in the source column separated by a comma(,).
o This formula will only allow dates that are after today's date.
3. Validate Text Length (Limit Characters)
You can limit the number of characters entered into a cell.
• Formula:
=LEN(A1)<=5
o This will restrict the entry to a maximum of 5 characters.
4. Validate that a Cell Contains Only Numbers
You can use ISNUMBER to check that the entered value is a number.
• Formula:
=ISNUMBER(A1)
o This formula will allow only numeric values.
5. Validate Text Starts with a Specific Prefix
You can ensure that the text entered starts with a specific character or string.
• Formula:
=LEFT(A1, 3)="ABC"
o This will only allow text that begins with "ABC".
6. Validate Email Address Format
You can use a formula to check whether the input contains "@" and "." to mimic basic
email validation.
• Formula:
=AND(ISNUMBER(SEARCH("@",A1)), ISNUMBER(SEARCH(".",A1)))
o This formula checks that the email address contains both "@" and
".".
7. Validate that a Value is Not a Duplicate
You can prevent duplicate entries in a range using COUNTIF.
• Formula:
=COUNTIF($A$1:$A$10, A1)=1
o This will ensure that the value entered is unique within the range
A1:A10.
8. Validate that the Value is a Positive Number
You can restrict input to only positive numbers.
• Formula:
=A1>0
o This ensures the entered value is greater than zero.
9. Validate that a Value is a Valid Time
You can ensure that the value entered is within a valid time range (e.g., 9:00 AM to
5:00 PM).
• Formula:
=AND(A1>=TIME(9,0,0), A1<=TIME(17,0,0))
o This ensures the value is between 9:00 AM and 5:00 PM.
10. Validate Data Based on Another Cell
You can create validation rules based on the value of another cell. For example,
ensuring a value is only entered if a certain condition is met in another cell.
• Formula (e.g., allow data entry in B1 only if A1 contains "Yes"):
=IF(A1="Yes", TRUE, FALSE)
o This will allow data in cell B1 only if A1 contains the word "Yes".
Working with Templates in Excel: Designing the Structure of a Template
Excel templates are pre-designed workbooks that help streamline the
creation of new documents by providing a predefined structure and formatting. Using
templates allows for greater efficiency, consistency, and standardization in reporting,
analysis, or any other tasks you frequently perform.
In this section, we’ll explore how to design the structure of a template in Excel,
including the steps involved, the key elements to consider, and tips for creating
templates that are easy to use and maintain.
Step 3: Insert Excel Templates. In this step, we will insert one of the excel templates.
For this, we need to choose our template (Here, we are choosing one of the calendar
templates). Once we click on our desired template excel will pop up a window. It is
having one of the options Create we need to click on it.
Once we click on Create option, excel will automatically download the template and
make it ready to use.
As we can see in the above picture, excel has already created the Calendar for us.
We just need to focus on data and datasets to use the calendar.
Designing the Structure of a Template
When designing an Excel template, it’s essential to focus on several key aspects that
will make the template useful and easy to apply.
1. Plan the Layout and Structure
The first step in designing a template is to plan the layout of the worksheet. Here
are a few things to consider:
• Header and Footer:
o Define the Header to include important information such as the
report title, date, and any other relevant details.
o Use the Footer for page numbers, document version, or other
necessary information.
Example: A financial report template might have the title "Quarterly Financial
Report" in the header and the date and page numbers in the footer.
• Tables and Data Ranges:
o Organize your data in tables for better structure and readability.
Use Excel's Table feature (Insert → Table) to make data more
dynamic.
o Include appropriate headings for each column (e.g., Date, Item,
Amount, Description, etc.).
Example: A sales report template might include tables for sales data, expenses, and
summary data.
• Formulas and Calculations:
o Plan where to place formulas and calculations to automate
computations. Use SUM, AVERAGE, VLOOKUP, and other
functions to simplify data entry.
o Ensure that the template is structured so users can enter data in
specific places while the calculations occur in others.
Example: For an expense tracker, include a formula in the "Total" column to
calculate the sum of the expenses.
2. Add Predefined Styles and Formatting
Templates should be designed with clear formatting to make the document visually
appealing and easy to read. Some of the key formatting elements to include are:
• Font Style and Size:
o Use consistent font styles (e.g., Arial or Calibri) and sizes for
headings, data, and titles.
• Cell Borders:
o Use borders to demarcate sections and make the template easier
to navigate.
o Color borders or background cells to highlight important sections,
such as headers or totals.
• Number Formats:
o Apply proper number formatting to cells that require currency,
percentages, or dates. For example, ensure that monetary values
are formatted as currency (e.g., $1,234.56).
Example: A budget template might use a currency format for budgeted and actual
amounts.
• Conditional Formatting:
o Use conditional formatting to visually highlight important data.
For example, you might color cells red if the value is negative or
above a certain threshold.
Example: In a sales performance template, you might use conditional formatting to
highlight sales numbers that fall below a target.
3. Data Validation and Drop-down Lists
To ensure users input data correctly, you can use Data Validation to restrict the
type of data that can be entered in certain cells. Some common uses of data
validation include:
• Drop-down Lists:
o Use Data Validation with List to create drop-down menus. This
ensures that users can only select from predefined options.
Example: A project management template might include a drop-down list for
selecting project status (e.g., "Not Started", "In Progress", "Completed").
• Number Ranges:
o Use data validation to ensure that numeric values fall within a
specific range.
Example: For an expense report, you might use validation to ensure that expenses
are entered as positive numbers.
• Date Ranges:
o Use data validation to ensure that only valid dates (within a
certain range or future dates) are entered.
Example: A schedule template can use validation to ensure that dates entered are
within the current year.
4. Lock and Protect Cells
To prevent users from accidentally modifying certain cells (e.g., formulas, headers,
or structure), you can lock and protect them.
• Locking Cells:
o By default, all cells in an Excel worksheet are locked. To protect
important data or formulas, you can unlock the cells where users
should enter data and lock the rest.
o To unlock cells, select the cells, right-click, choose Format Cells, go
to the Protection tab, and uncheck Locked.
• Protecting the Worksheet:
o Once the cells are locked, protect the entire worksheet (Review →
Protect Sheet). You can set a password to prevent others from
unlocking the sheet without permission.
Example: A financial template may have formulas locked to prevent users from
accidentally changing them while allowing them to input values in other cells.
5. Save the Template
Once you’ve designed the template structure, you can save it as an Excel Template
(.xltx) file. This allows users to create new workbooks based on the template
without modifying the original file.
• Steps to Save as a Template:
1. Go to File → Save As.
2. In the "Save as type" drop-down menu, choose Excel Template
(*.xltx).
3. Name the template and choose the location to save it.
Example: Save your monthly sales report template as Monthly Sales Report.xltx.
box.
4. In the Sort Dialogue box, make the following selections
• Sort by (Column): Region (this is the first level of sorting)
• Sort On: Values
• Order: A to Z
• If your data has headers, ensure that ‘My data has headers’ option
is checked.
5. Click on Add Level (this will add another level of sorting options).
7. Click OK
The above steps would give you the result as shown below. This sorts the data
first by Region and then by Sales column. Note that since it sorts the Region
column first when the Sales column is sorted, the Region column remains
unchanged.
In this example, I have sorted the data for two columns. You
can have more than two-column sorting as well. All you need to do is add these
sorting levels and specify the details.
Note: While this method is longer and takes a few more steps (as compared with
the multi-sorting method covered next), I recommend using this as it is less
confusing.
Multi-Level Sorting Using Sort Icons
Not many people know this way of doing a multiple level data sorting in Excel.
This technique works the same way with a minor difference – you sort the
second level first and then move to the first level sorting column.
Here are the steps to do it:
1. Select the column that you want to be sorted last (in this case, select the
Sales data first – C1:C13).
2. Click on the Data tab.
3. In the Sort and Filter group, click on the Z to A sorting icon. This will sort
the sales data from largest to smallest.
4. The above step would make a Sort Warning dialog box pop-up. Make sure
‘Expand the selection’ is selected. This makes sure the entire dataset is
sorted, and not just data in the Sales column.
5. Click Sort.
6. Select the Region column.
In the Data tab, click on the A to Z sort icon.
7. In the Sort Warning dialog box pop-up, make sure ‘Expand the selection’
is selected.
8. Click Sort.
Custom Sorting
Custom sorting allows you to sort data based on specific criteria, such as custom
lists (like days of the week, months, or other predefined categories).
1. How to Create a Custom Sort Order:
o Step 1: Select any cell in your data.
o Step 2: Click on the Data tab and select Sort.
o Step 3: In the Sort dialog box, choose the column you want to sort
by.
o Step 4: Click on the Order dropdown, then select Custom List.
o
o Step 5: Choose a custom list (e.g., for sorting months as "January,
February, March..." instead of alphabetically).
o Step 6: Click OK.
Example of Custom Sorting: If you want to sort months in chronological order,
but they appear alphabetically (e.g., "April", "August", "December"), you can
create a custom list to sort the months in their correct order.
Advanced Filtering
Advanced Filtering allows you to filter data using more complex criteria. It also
gives you the ability to filter data in place or copy it to another location.
1. How to Use Advanced Filter:
o Step 1: Select any cell within the data range.
o Step 2: Go to the Data tab and click Advanced in the Sort & Filter
group.
o Step 3: In the Advanced Filter dialog box, select whether to filter
the data in place or copy it to another location.
o Step 4: Define the List range (the data you want to filter) and the
Criteria range (where you specify the filter conditions).
o Step 5: Click OK to apply the filter.
2. Criteria Range:
o This is a separate range of cells where you define the criteria for
filtering. For example, if you want to filter sales data for Region =
"North" and Sales > $1,000, you could create a small table with
those criteria in a new section of the worksheet.
4. Clearing Filters
Sometimes, after applying filters, you might want to return to the original view
(with all the data visible again).
1. How to Clear Filters:
o Step 1: Go to the Data tab.
o Step 2: Click on Clear in the Sort & Filter group to remove all filters
from your dataset.
One-Mark Questions
1. What is the purpose of Data Validation in Excel?
2. How do you specify a valid range of values in Data Validation?
3. What is a template in Excel?
4. How can you apply a custom validation based on a formula?
5. What is the difference between Sorting and Filtering data in Excel?
6. What is the purpose of the "Subtotal" function in reports?
7. What is a multiple-level sort in Excel?
Seven-Mark Questions
1. Explain the steps for applying Data Validation with a list of valid values.
2. Describe how to design the structure of a template in Excel.
3. What is custom sorting, and how do you use it in Excel?
4. Explain how to filter data for a selected view in Excel.
Fifteen-Mark Questions
1. Explain how to create multiple-level subtotals in Excel. Provide a step-by-step guide.
2. Discuss how to use advanced filter options in Excel for complex data filtering. Provide
examples.
3. Explain the process of designing and using templates for standardization in Excel.
UNIT -3
Pivot Tables
Pivot tables are one of Excel's most powerful features. A pivot table allows
you to extract the significance from a large, detailed data set.
Our data set consists of 213 records and 6 fields. Order ID, Product, Category,
Amount, Date and Country.
The following dialog box appears. Excel automatically selects the data for you. The
default location for a new pivot table is New Worksheet.
3. Click OK.
Drag fields
The PivotTable Fields pane appears. To get the total amount exported of each
product, drag the following fields to the different areas.
1. Product field to the Rows area.
1
2. Amount field to the Values area.
3. Country field to the Filters area.
Sort
To get Banana at the top of the list, sort the pivot table.
1. Click any cell inside the Sum of Amount column.
2. Right click and click on Sort, Sort Largest to Smallest.
Two-dimensional Pivot Table
If you drag a field to the Rows area and Columns area, you can create a two-
dimensional pivot table. First, insert a pivot table. Next, to get the total amount
exported to each country, of each product, drag the following fields to the different
areas.
1. Country field to the Rows area.
2. Product field to the Columns area.
3. Amount field to the Values area.
4. Category field to the Filters area.
2
3.Select an option from the PivotTable Style Options group.
Row/Column Headers: Displays special formatting for the first row
or column of the PivotTable.
Banded Rows/Columns: Applies a different format to alternate rows
or columns.
What is PivotTable in advanced Excel?
The PivotTable Fields List is the drag-and-drop interface on the right side of
Excel that allows you to populate the logic that drives the Pivot Table.
This panel can be customized in a variety of ways. By clicking the Tools (gear)
icon you can rearrange the positions of the field list and the corresponding drop
zones.
3
Each of these arrangement options has its strengths and weaknesses. Experiment
with the options to see which fits your needs best.
One of the features new users to Pivot Tables soon learn is the ability to filter the
Pivot Table by a “global” field. In other words, filter the entire table by a single,
overall criterion such as “Customer Name” or by “Department”.
Now imagine performing those steps 200 times. You would quickly tire of the
process.
3,Double-Click to View Details
Data Bars are created by the Conditional Formatting tool and are a great way to
create in-cell bar charts.
4
5.Calculate the Difference Between Columns
Suppose you have a Pivot Table that displays sales for products across two months.
If you wanted to calculate the increase or decrease in sales from June to July, you
can perform the following steps:
1. Add the “Sales USD” field a second time to the Values zone.
2. Right-click on one of the values in the second instance of sales and
select Show Values As -> “Difference From…”.
3. In the “Show Values As…” dialog box, set the “Base Field” to Months and
the “Base Item” to Previous.
Create a PivotChart
5
It’s convenient to use the data as a table. To convert this data to a table,
Select the dataset and then go to Insert >> Table.
After that, a dialog box will show up. Make sure you select My table
has headers and click OK.
6
External Data Connection in Advanced Excel
7
The ‘Consolidate’ feature in Excel can be useful when you want to
summarize the same data from multiple sources. Consolidating data in Excel
allows combining data from multiple rows and ranges using functions such
as sum, average, count, min, and max.
Data consolidation functionality also works well with data from other
worksheets and workbooks.
Data Consolidation Feature in Excel?
1. Data consolidation is a feature in Microsoft Excel that allows you to
collect data from different worksheets to one single sheet in the same
workbook.
2. This feature also allows the user to perform operations like sum, average,
max, min, product, etc on the data to be consolidated.
3. Consolidate meaning in English is to combine a number of things into a
single more effective thing.
4. It is a technique that summarizes the data from different worksheets and
combines it into one single worksheet.
5. Data consolidation is a useful tool for businesses that helps them to
combine data from different worksheets to one after applying operations.
Excel Pivot Tables have a lot of useful calculations under the SHOW VALUES
AS option and one that can help you a lot is the Excel Pivot Table Percentage of
Row Total.
This option will immediately calculate the percentages for you from a table filled
with numbers such as sales data, expenses, attendance, or anything that can be
quantified.
STEP 3: In the Create PivotTable dialog box, select table range and New
Worksheet and then Click OK.
8
STEP 4: In the ROWS section put in the Sales Person field, in
the COLUMNS put in the Financial Year field and in the VALUES area you need
to put in the Sales field twice.
STEP 5: Select the Show Values As tab and from the drop down choose % of
Row Total.
STEP 6: Select the Show Values As tab and from the drop down choose % of
Row Total.
STEP 7: Notice that the Percent of Row Totaldata is in a decimal format that is
hard to read:
STEP 9: Inside the Format Cells dialog box, make your formatting changes within
here and press OK twice.
Tables are one of the best features of Excel. While it is possible to use the standard
cell referencing with a Table, they have their own referencing style called
structured references. We have to think a little differently to create a running total
in an Excel Table using structured references.
The example
All the scenarios in this post use the same Table. The goal is to:
9
Normal cell references
We could use normal cell references in either the A1 or R1C1 style. For this, there
are two common options (1) Cell above + value (2) Expanding range with mixed
references.
The methods using standard references cannot guarantee the correct values when
adding or deleting rows, so these should be discounted.
Both structured referencing methods can be used with COUNT, COUNTIFS, MIN,
MINIFS, MAX, MAXIFS, AVERAGE, and AVERAGEIFS.
The SUM + header row method works, but conceptually, I have an issue with
referencing the header row in this way. Don’t get me wrong; if it were the only
option, I would definitely use it.
The SUM + INDEX method is my preferred choice. It’s flexible and provides
everything we need.
10
How to Compare Two Columns in Excel
When you have data in two different columns, tables, or spreadsheets, you may
often need to compare them to see what data is missing or present in both.
Comparisons can happen in many different ways. You need to decide the method
to compare depending on what you want from it.
You can compare two columns in Excel by:
11
2. To specify the default settings for displaying grand totals, use
the PivotTable Options dialog. To invoke it, on the PivotTable
Tools | Analyze tab, in the PivotTable group, click the PivotTable
Options button.
3. Switch to the Totals & Filters tab. To show or hide the grand totals for
rows, columns or the entire PivotTable report, select or clear the
corresponding check box(es) in the Grand Totals section.
Slicers In Excel
12
Slicers in Excel are software filters used along with excel tables or pivot tables
over a large amount of data. Not just filtering out the data, but slicers also help you
with an easy understanding of the information being extracted and displayed on the
screen.
Step 1: Convert the data into a tabular format or a pivot table format.
Step 2: Select any cell of the Excel table or pivot table and insert slicers.
Step 1
By default, Excel treats your data in the form of a database, and adding slicers
would not be possible sometimes. So in your defense, you could directly start
either by converting the data into a pivot table or simply an Excel table.
Navigate to the insert menu on the toolbar and select pivot table.
In the pivot table sheet, navigate to the insert option, select the option to
insert slicers.
13
Step 2
Select any cell of the Excel table or pivot table and insert slicers.
Now insert the slicers. Inserting slicers is completely the same as inserting slicers
in a pivot table.
Using slicers in Excel has proven to have multiple advantages and make life easier
during real-time data analysis. A few important benefits are discussed below.
1. The Slicer formulas, along with formulas, are easy to be copied or moved
to different tables.
3. Slicers in Excel help in maintaining data security and integrity as the user
is only interested in filtering out the necessary information but not mess
with the actual data.
14
15
UNIT -4
MORE FUNCTIONS
IF Function. The Excel IF function is the most essential function in Excel for logical
tests. ...
MIN & MAX Function. The Excel MIN function returns the smallest numeric value in a
range of values. ...
TRIM Function. ...
CONCATENATE Function. ...
COUNT Function. ...
COUNTA Function. ...
COUNTIF Function. ...
SUMIF Function.
SUM Function
The Excel SUM function returns the sum of all inserted values. For the input, you can combine
any sort of numerical values, e.g. numbers, cell references, ranges or arrays.
AVERAGE Function
The Excel AVERAGE function returns the average of all inserted values. For the input, you can
combine any sort of numerical values, e.g. numbers, cell references, ranges or arrays.
IF Function
The Excel IF function is the most essential function in Excel for logical tests. You can define the
value that is returned by this function if the result of the logical test is TRUE and the value that is
returned if the result is FALSE.
If you want to test more than one condition, you can simply nest multiple IF functions.
TRIM Function
The Excel TRIM function removes the leading and trailing spaces from a given text.
Additionally, it removes unnecessary spaces between words.
CONCATENATE Function
The Excel CONCATENATE function joins two or more text items together.
COUNT Function
The Excel COUNT function counts the number of cells containing numbers.
SUMIF Function
The Excel SUMIF function returns the sum of all cells meeting a specific criteria. It supports all
sorts of logical operators and wildcards (*,?) for partial matching. If the range for the criteria
check and the sum range are not the same, the sum range can be provided as a third optional
parameter.
Function
Description
DATE function
Returns the serial number of a particular date
DATEDIF function
Calculates the number of days, months, or years between two dates. This function is useful in
formulas where you need to calculate an age.
DATEVALUE function
DAY function
DAYS function
DAYS360 function
Calculates the number of days between two dates based on a 360-day year
EDATE function
Returns the serial number of the date that is the indicated number of months before or after the
start date
EOMONTH function
Returns the serial number of the last day of the month before or after a specified number of
months
HOUR function
ISOWEEKNUM function
Returns the number of the ISO week number of the year for a given date
MINUTE function
NETWORKDAYS function
NETWORKDAYS.INTL function
Returns the number of whole workdays between two dates using parameters to indicate which
and how many days are weekend days
NOW function
SECOND function
TIME function
TIMEVALUE function
TODAY function
WEEKDAY function
WEEKNUM function
Converts a serial number to a number representing where the week falls numerically with a year
WORKDAY function
Returns the serial number of the date before or after a specified number of workdays
TEXT function
DATABASE FUNCTION
DAVERAGE: It will return the average of the selected database, which
DCOUNT: It will count the cells containing some number in the selected
DGET will return a single value from the selected database, satisfying the
user criteria.
DMAX: It will return the maximum value of the selected database, which
DMIN: It will return the minimum value of the selected database, which
entire population in the selected database, which satisfies the user criteria.
Step 1: Select the cell where you wish to derive the result
Step 2: Type “=POWER” -> select the formula prompt -> select the cell which
contains the number you want to use as the base -> insert a “,” (comma) -> select
the cell which contains the number you want to use as the exponent -> press
the “Enter” key
For example: In the below image, 3 needs to be raised to the power 4.
Hence, “=POWER(A3,B3)” is used, where cell A3 contains the base value 3 and
cell B3 contains the exponent value 4. This will display the result to be 91.
AutoFormat in Excel
7 Easy Steps to Unhide the AutoFormat Option
Follow the below steps to unhide the cool option to start using it.
4.Select the “Command Not in the Ribbon” option from the drop-down
list.
5.Now, search for the “AutoFormat” option.
What If Analysis
The best thing about Excel Goal Seek is that it performs all calculations behind the
scenes, and you are only asked to specify these three parameters:
Formula cell
Target/desired value
The cell to change in order to achieve the target
The Goal Seek tool is especially useful for doing sensitivity analysis in financial
modeling and is widely used by management majors and business owner. But there
are many other uses that may prove helpful to you.
For instance, Goal Seek can tell you how much sales you have to make in a certain
period to reach $100,000 annual net profit (example 1). Or, what score you must
achieve for your last exam to receive an overall passing score of 70% .
On the whole, whenever you want a formula to return a specific result but are not
sure what input value within the formula to adjust to get that result, stop guessing
and use the Excel Goal Seek function!
Excel data tables shine brightest when dealing with intricate formulas that rely on
multiple variables. With the ability to manipulate diverse inputs and witness the
ripple effect on formula outcomes, data tables provide an invaluable avenue for
comparative analysis and insightful decision-making.
Currently, two variations of data tables grace Excel’s repertoire: the one-variable
data table and the two-variable data table. While the two-variable data table is
restricted to a maximum of two distinct input cells, its potential for exploration
remains boundless, allowing you to traverse a wide spectrum of variable values
and delve deep into the heart of data-driven discovery.
Step 1: Create a below table that shows your list of expenses and income
sources.
Step 2: From the top of Excel, click the Data menu > On the “Data” menu,
locate the “Data Tools” panel > Click on the “What-If-Analysis” item and select
the “Scenario Manager” in Excel from the menu.
Step 3: When you click on the Scenario Manager below, the dialog box will
open.
Step 4: You need to create a new scenario. So, click on the Add button. Then,
you will get the below dialog box.
To apply conditional formatting to entire rows, based on the value of a specific cell
or column:
Steps:
bash
Copy code
=$A2>100
This formula ensures that the conditional formatting will apply to the
entire row if the value in column A for that row is greater than 100.
6. Set Formatting:
o Click the Format button to choose the formatting options (such as
font color, background color, borders, etc.).
7. Click OK to apply the rule.
Now, the entire row will be formatted based on the condition you specified for
column A (or whichever column you reference).
Steps:
bash
Copy code
=$B1>100
6. Set Formatting:
o Click the Format button to set the formatting style (like changing the
color of the text or background).
7. Click OK to apply the rule.
If you want to format entire rows based on a value in a specific column, follow
these steps:
Steps:
bash
Copy code
=$C2>50
This will format the entire row when the value in column C (for that
row) is greater than 50.
5. Set the Formatting:
o Click Format and select the formatting options.
6. Click OK to apply the rule.
Notes:
The $ sign before the column reference (e.g., $A2) makes the reference
absolute for the column but relative for the row, meaning the conditional
formatting will apply to the entire row based on the value in the specific
column for each row.
You can use different conditional formatting types, such as "Highlight Cells
Rules" (for conditions like greater than, less than, etc.) or "Top/Bottom
Rules" (for applying formats to the top/bottom 10 values).
1. Grid Layout: Start with a grid representing an Excel worksheet (rows and
columns).
2. Row Conditional Formatting:
o Show a row with a highlight or color applied (e.g., row 2) based on a
condition in column A (e.g., = $A2 > 100).
o Draw an arrow pointing to column A indicating that this column's
value determines the formatting for the whole row.
3. Column Conditional Formatting:
o Show a column with a highlight (e.g., column B) based on a condition
in cell B1 (e.g., = $B1 > 50).
o Draw an arrow pointing to cell B1 indicating that the value in this cell
determines the formatting for the whole column.
UNIT - 5
It is sometimes difficult to interpret the Excel data due to complexity and size of
data. So, charts are a way to represent the data graphically and interpret the data
easily. Charts are the visual representation of data.
Graphical representation of data using charts makes complex data analysis easier to
understand. Excel has a variety of charts, each with its own different functionality
and representation style.
Excel offers many charts to represent the data in different manners, such as - Pie
charts, Bar charts, Line charts, Stock charts, Surface charts, Radar charts, and many
more. You can use them according to your data and analysis. All these charts
There is a list of basic and advanced level of charts used for different purposes to
interpret the data.
1. Column Chart
2. Line Chart
3. Bar Chart
4. Area chart
5. Pie chart or Doughnut chart
6. Surface chart
These are the most used charts of Excel that an Excel user usually requires.
Microsoft Excel introduce one more new chart called Treemap chart for 2016 and
newer version. It has come with some advanced features and representation styles.
We will illustrate each chart and its functionality with an example in this chapter.
Learn carefully and use them accordingly.
Column Charts
A column chart is basically a vertical chart that is used to represent the data in
vertical bars. It works efficiently with different types of data, but it is usually used
for comparing the information.
For example, a company wants to see each month sell graphically and also wants
to compare them. Column charts are best for it that help to analyze and compare each
month's data with each other.
Line Chart
Line charts are most useful for showing trends. Using this chart, you can easily
analyze the ups and downs in your data over time. In this chart, data points are
connected with lines.
For example, a company wants to analyze the sell of products for the last five years
graphically. Additionally, it also wants to analyze the ups and downs of each year
product sell.
Bar chart
Bar charts are horizontal bars that work like column charts. Unlike column charts,
Bar charts are horizontally plotted. Or you can say that bar charts and column charts
are just opposite to each other.
For example, a company uses the bar chart to analyze the data through vertical bars
to represent the data graphically. You can see as well as compare the values to each
other, respective to data.
Area chart
Area charts are just like line charts. Unlike the line charts, gaps are filled with color
in area charts. Area charts are easy to analyze the growth in business as its shows
ups and downs through line.Similar to the line charts, data points in area charts are
connected with lines.
Pie chart
A pie chart is a rounded shape graph that is divided into slices of pie. Using this
chart, you can easily analyze data that is divided into slices. It makes the data easy
to compare the proportion.
Pie charts make it easy to analyze which values make up the percentage of whole.
Pie chart is also known as Doughnut chart. Excel offers 2D and 3D pie charts.
Surface chart
Surface chart is actually a 3D chart that helps to represent the data into a 3D
landscape. These charts are best to use with a large dataset. This chart allows to
displaying a variety of data at the same time.A large dataset is not easy to represent
using other charts. Surface chart solve this problem that allows displaying large
datasets using this 3D chart.Choose your charts wisely
Excel offers too many charts as well as their 2D and 3D type. You can use any of
them but choose them wisely according to your data. Different scenario requires
different charts. Though, it can display all and correct information.
We have a list of some points for each type of chart that helps you to choose the
chart wisely. Read them carefully -
Excel enables easy to use user interface using which you can easily insert a required
chart for your data. You need to follow few simple steps, Excel > Insert tab > Chart
section > choose a chart.
We will illustrate these steps from start to end for creating the chart for Excel data.
Following are the steps to insert a chart in Excel.
Step 1: We have the following dataset (Animal population rate for six years from
2015-2020) for which you want to create a chart in Excel.
Step 2: Select the data, including column header and row label for which you want
to create a chart. This data will be the source data for your chart.
Step 3: Navigate to the Insert tab in the Excel header, where you will see a charts
section that contains a list of all these charts.
Step 4: Choose a chart from here according to your data. We have chosen a 3D
Column chart containing vertical bars for your data.
Step 5: The selected chart is inserted into your Excel worksheet. Initially, the chart
looks like this for the data selected in step 2.
Currently, this chart does not have a valid title, clear values for analysis, and more.
You can set up all these things in your chart by modifying it.
Step 6: Double-tap on the Chart Title to make it editable and then provide a new
valid title that suites to it.
Here, Blue color vertical bar is representing to Dolphin, Orange vertical bar
to Penguin, and Grey vertical bar to White Bear population count.
Step 7: You can also define each vertical bar for its year so that the user can easily
analyze the values. Click on the Chart Filters icon here.
Step 8: Click on the Select data present at the bottom of the list to replace the years
2015 for each vertical bar.
Step 9: Here, select the number 1 to replace it with year 2015 and click
the Edit button.
Step 10: Enter the year and click OK.
Step 11: The year 2015 will immediately reflect on the chart, and all other become
blank. Now, to put all other years for each vertical bar, click one more time here.
Step 12: Add more years from 2016 to 2020 inside curly braces separated by a
comma and click OK.
Step-by-Step Guide:
Share or insert Excel charts into PowerPoint or Microsoft Word, follow these
steps:
This method keeps the chart linked to the original Excel file, so it updates
automatically when the data in Excel changes.
If you don’t want the chart to be editable or linked to the Excel file:
If you want to insert the entire Excel chart or workbook into PowerPoint/Word:
By following these methods, you can effectively share and insert charts into
PowerPoint and Word, with options for maintaining links, embedding, or pasting as
images.
1. Dynamic Arrays
TEXTJOIN: Joins text from multiple ranges or values, with a delimiter that
you can specify. For example, combining first and last names with a space or
comma.
CONCAT: A more flexible version of the CONCATENATE function.
Unlike TEXTJOIN, it doesn’t require a delimiter but can still combine text
strings from multiple cells.
What It Is: Power Query is a data connection tool that allows you to extract,
transform, and load data from various sources.
New Features:
o Data Transformation Improvements: More intuitive and robust
options for transforming data.
o Improved Performance: Quicker refresh rates for large data sets.
o Combine Files: Easily combine data from multiple files in a folder or
from different sheets.
5. Co-authoring in Excel
What It Is: Power Pivot is an advanced data modeling feature that allows
users to create sophisticated data models, define relationships, and create
measures using DAX (Data Analysis Expressions).
Recent Features:
o Improved Performance: Faster data model processing and loading.
o New DAX Functions: New and more powerful functions for data
analysis.
What It Is: The online version of Excel has been getting more feature parity
with the desktop version.
Recent Features:
o Real-Time Collaboration: Multiple users can now work together
with no lag.
o Mobile Optimization: A better mobile experience for editing and
viewing on smartphones and tablets.
o Data Insights: Use of AI-powered insights and suggestions for your
data (available in some Microsoft 365 plans).
What It Is: The "Ideas" feature provides AI-driven insights into your data,
including trends, patterns, and suggestions for analysis.
Impact: This tool automatically suggests charts, pivot tables, and patterns to
help you analyze your data more effectively and quickly.
What It Is: Excel now supports custom data types like stocks, geography,
and others. You can also create custom data types from your data, linking
them to external data sources.
Impact: Allows richer data management and integration with external data,
enhancing data models.
What It Is: Excel’s Smart Fill uses AI to automatically fill out data based
on patterns it detects in your entries.
Example: If you input part of an address or name in a column, Excel can
automatically suggest the rest based on detected patterns.
Impact: Speeds up data entry and minimizes errors.
What It Is: A powerful new function that allows you to create reusable,
custom functions in Excel.
Impact: With LAMBDA, you can define your own functions with
parameters and return values, similar to how built-in Excel functions work.
This can help reduce the complexity of formulas in your sheets.
What It Is: This feature allows users to create custom views of a worksheet
(i.e., filters, column widths) without affecting others' views when co-
authoring.
Impact: Enables multiple users to work on a sheet with different views
without interfering with each other’s work.
What It Is: Excel now supports features like comments that allow threaded
discussions (similar to comments in Google Docs). It also has the
@mention feature for tagging collaborators.
Impact: Makes working in teams smoother, with better communication
inside the document.
What It Is: You can now insert icons, 3D models, and SVG images into
Excel.
Impact: This adds more visual appeal to your spreadsheets, making them
more dynamic and engaging.
What It Is: More control over who can edit or view your workbook when
sharing, especially in the cloud (OneDrive, SharePoint).
Impact: You can now set permissions for specific users and even restrict
what others can do (e.g., view-only, editing rights).
16. Automatic Formatting with Data Types
What It Is: Excel now automatically formats certain types of data (like
dates or numbers) as you enter them, reducing the need for manual
formatting.
Impact: This makes working with large datasets easier and more intuitive.
Sparkline, Inline, and Data Charts: Key Concepts for College Students
In Excel, sparklines, inline charts, and data charts are powerful tools that help
visualize data, making it easier to analyze and present trends, patterns, and insights.
Below are the key concepts and how to use these features effectively.
1. Sparklines
Sparklines are tiny charts that fit within a single cell, providing a compact
and immediate visual representation of data trends.
They are used to show trends over time or the variation in a data set, without
taking up much space on a worksheet.
Types of Sparklines:
Line Sparkline: Displays a simple line chart that connects data points.
Column Sparkline: Displays vertical bars that show data variations.
Win/Loss Sparkline: Highlights positive (win) and negative (loss) values
with bars, useful for showing up/down trends.
1. Select Data: Highlight the cells containing the data you want to use.
2. Insert Sparklines:
o Go to the Insert tab on the Ribbon.
o In the Sparklines group, choose the type of sparkline (Line, Column,
or Win/Loss).
3. Choose Location: Select where you want the sparklines to appear, typically
in a new column next to your data.
4. Customize Sparklines:
o Once inserted, you can format them by changing colors or adding
markers to highlight specific points (e.g., high/low, negative points).
o Use the Sparkline Tools tab to customize.
Use Cases:
3. Inline Charts
Inline charts are charts inserted directly into a cell or an embedded area
within the text of a worksheet.
They are similar to sparklines but can show more detailed data and require a
bit more space.
Inline charts are often manually created by adjusting the size of a standard
chart (e.g., Column or Line chart) and positioning it within the data grid.
Unlike sparklines, inline charts usually provide more options and allow for
axis labels, titles, and legends.
Use Cases:
3. Data Charts
Data charts are the traditional charts that you can create in Excel (e.g., Bar,
Line, Pie, Column, etc.) to represent data visually.
They offer full customization and interactivity, with features like axes,
legends, data labels, and trendlines.
Column/Bar Charts: Great for comparing data across categories (e.g., sales
by region).
Line Charts: Ideal for showing trends over time (e.g., stock prices over a
month).
Pie Charts: Useful for showing proportions and percentages of a whole
(e.g., market share).
Area Charts: Like line charts but with areas filled to emphasize the
magnitude of change.
Scatter Plots: Display relationships between two sets of values (e.g.,
correlation between study hours and grades).
1. Select Data: Highlight the range of data that you want to visualize.
2. Insert Chart:
o Go to the Insert tab.
o Select the chart type you need (e.g., Column, Line, Pie).
3. Customize the Chart:
oChart Tools: Use the Chart Design and Format tabs to customize
the chart’s appearance, colors, labels, and titles.
o Chart Elements: Add elements like axes, data labels, and legends.
4. Adjust Chart Size: Resize the chart to fit your needs by dragging its edges.
Use Cases:
Presentations: Charts help make data more engaging and understandable for
your audience.
Reports: Charts provide a quick way to summarize complex data and
highlight key trends.
Data Analysis: Helps in exploring and analyzing large data sets, revealing
patterns or outliers.
Embedding charts
Trend analysis and In-depth analysis
Use Case within reports or data
quick comparisons and presentations
views
Conclusion
Sparklines are perfect for providing a quick visual trend in a small space.
Inline charts provide a middle ground between sparklines and traditional
charts, allowing more detailed visuals within cells or reports.
Data charts are the traditional full-sized charts that provide the most
flexibility and detail, ideal for in-depth analysis and presentations.
Understanding these tools and when to use them can greatly improve the
effectiveness of your data presentation and analysis.