0% found this document useful (0 votes)
3 views

Excel (1)

MS Excel is a widely used spreadsheet program for saving and analyzing numerical data, allowing users to create budgets, analyze data, and perform calculations. Key features include cells, workbooks, worksheets, functions like VLOOKUP, and tools for data visualization and analysis. While Excel offers advantages such as data storage and analysis, it also has disadvantages like human error and lack of collaboration.

Uploaded by

Muktar Fakir
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Excel (1)

MS Excel is a widely used spreadsheet program for saving and analyzing numerical data, allowing users to create budgets, analyze data, and perform calculations. Key features include cells, workbooks, worksheets, functions like VLOOKUP, and tools for data visualization and analysis. While Excel offers advantages such as data storage and analysis, it also has disadvantages like human error and lack of collaboration.

Uploaded by

Muktar Fakir
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Excel

1. What is Excel ?
MS Excel is a commonly used Microsoft Office application. It is a
spreadsheet program which is used to save and analyze numerical
data.

IT
2. What can a spreadsheet do?
In contrast to a word processor, which manipulates text, a spreadsheet
manipulates numerical data and text. Using a spreadsheet, one can

ns
create budgets, analyze data, produce financial plans, and perform
various other simple and complex numerical applications.
so
3. What is a cell in Excel?
A cell is the intersection of a row and a column in an Excel worksheet.
Each cell is identified by a unique reference, such as A1, B2, or C3.
ck

4. How do you freeze panes in Excel?


To freeze panes, go to the "View" tab and select "Freeze Panes." You
Ra

can choose to freeze the top row, first column, or a specific row and
column.

5. Explain the difference between a workbook and a worksheet.


A workbook is the entire Excel file, while a worksheet is a single tab
within the workbook. A workbook can contain multiple worksheets.

Python | 1
6. Important Excel shortcuts
Ctrl + P used to open the print dialogue window
Ctrl + N creates a new workbook
Ctrl + S saves the current workbook
Ctrl + C copy contents of current select
Ctrl + V paste data from the clipboard
SHIFT + F3 displays the function insert dialog window
SHIFT + F11 Creates a new worksheet

IT
F2 Check formula and cell range covered

7. Advantages of Excel:

ns● Best way to store data.


● You can perform calculations.
● All the tools for data analysis.
so
● Easy to data visualizations with charts.
● You can print reports easily.
ck

● So many free templates to use.


● You can code to automate.
Ra

8. Disadvantages of Excel:
Lack of control and security.
Excel is prone to human error.
Excel is hard to consolidate.
Excel is unsuitable for agile business practices.
Excel can't help us make quick decisions.

Python | 2
Excel is not designed for collaborative work.
Excel is difficult to troubleshoot or test.

9. Application of Excel
Organizations use Microsoft Excel for the following:
● collection and verification of business data;
● business analysis;
● data entry and storage;

IT
● data analysis;
● performance reporting;
● strategic analysis;

10.
ns
● accounting and budgeting;
● administrative and managerial management;
Functions of excel:
so
AutoSum;
IF function;
ck

LOOKUP function;
VLOOKUP function;
HLOOKUP function;
Ra

MATCH function;
CHOOSE function;
DATE function;

11. What is VLOOKUP in Excel ?

Vlookup is one of Excel's built-in functions.

Python | 3
The function is used when you want to find a value in the left- hand
column of a vertical array of data, and return the corresponding value
from another column in the same array.

12. What is a function in Excel, and how is it different from a


formula?
A function is a predefined operation in Excel that performs a specific
calculation, such as SUM, AVERAGE, or IF. A formula is a user-defined

IT
calculation that can include functions, cell references, and operators.

13. How do you sum a range of numbers in Excel?

ns
To sum a range of numbers, you can use the SUM function. For
example, =SUM(A1:A10) would add up the numbers in cells A1 through
A10.
so
14. VLOOKUP function :
ck

The VLOOKUP function is used to perform a vertical look up in the left


most column and return a value in the same row from a column that you
specify.
Ra

Let’s explain this in a layman’s language. The home supplies budget


has a serial number column that uniquely identifies each item in the
budget. Suppose you have the item serial number, and you would like
to know the item description, you can use the VLOOKUP function
Here is how the VLOOKUP function would work.

Python | 4
IT
ns
so
=VLOOKUP (C12, A4:B8, 2, FALSE)
HERE,
"=VLOOKUP" calls the vertical lookup function
ck

"C12" specifies the value to be looked up in the left most column


"A4:B8" specifies the table array with the data
"2" specifies the column number with the row value to be returned by
Ra

the VLOOKUP function


"FALSE," tells the VLOOKUP function that we are looking for an exact
match of the supplied look up value
The animated image below shows this in action

Python | 5
15. Pivot Table:
A Pivot Table in Excel is a data analysis tool that helps you summarize
and analyze large datasets. You create it by selecting your data and
specifying how you want to organize and analyze it. Pivot Tables are
valuable for tasks like generating reports and gaining insights from
extensive data. They allow you to filter, sort, and aggregate data in a
structured format.

IT
16. Using a Pivot Table:
● Pivot Table Fields: You'll see a new worksheet with a Pivot Table
Fields pane on the right. Here, you can drag and drop the fields

ns into various areas:


● Rows: This area is for the criteria you want to use as rows.
● Columns: This area is for the criteria you want to use as columns.
so
● Values: Here, you can summarize data, often by using
aggregation functions like sum, count, average, etc.
ck

● Customize: You can customize the Pivot Table by dragging and


dropping different fields into these areas, changing aggregation
functions, and formatting.
Ra

● Filtering: You can filter the data in the Pivot Table by using the
drop-down arrows next to the field names.
● Refreshing Data: If the source data changes, you can refresh the
Pivot Table to update it with the latest data. Right-click on the
Pivot Table and select "Refresh."

17. HLOOKUP function :

Python | 6
HLOOKUP is an Excel function used to find a value in the first row of a
table and retrieve a corresponding value from another row in the same
table. It's useful for horizontal data organization, such as finding
information across columns.

18. MATCH Function:


The `MATCH` function in Excel helps you find the position of a specified
value within a range. You provide the value to search for, the range to

IT
search in, and an optional match type. It's useful for tasks like looking
up values and is often used alongside other functions for data retrieval
and analysis.

19. ns
DATE Function:
The DATE function in Excel lets you create a date by specifying the
so
year, month, and day as separate arguments. It's useful for constructing
dates when you have these components as separate values.
ck
Ra

Python | 7
IT
ns
so
ck
Ra

Python | 8

You might also like