Lab File
Lab File
Lab File
BBA-III SEMESTER
Submitted to: Submitted by:
MEGHA LAROIA Vishesh Kathuria
04925501721
INTRODUCTION TO EXCEL
The Ribbon in MS-Excel is the topmost row of tabs that provide the user with
different facilities/functionalities. These tabs are:
1. Home Tab: It provides the basic facilities like changing the font, size
of text, editing the cells in the spreadsheet, autosum, etc.
2. Insert Tab: It provides the facilities like inserting tables, pivot tables,
images, clip art, charts, links, etc.
3. Page layout: It provides all the facilities related to the spreadsheet-like
margins, orientation, height, width, background etc. The worksheet
appearance will be the same in the hard copy as well.
4. Formulas: It is a package of different in-built formulas/functions which
can be used by user just by selecting the cell or range of cells for values.
5. Data: The Data Tab helps to perform different operations on a vast set
of data like analysis through what-if analysis tools and many other data
analysis tools, removing duplicate data, transpose the row and column,
etc. It also helps to access data(s) from different sources as well, such
as from Ms-Access, from web, etc.
6. Review: This tab provides the facility of thesaurus, checking spellings,
translating the text, and helps to protect and share the worksheet and
workbook.
7. View: It contains the commands to manage the view of the workbook,
show/hide ruler, gridlines, etc, freezing panes, and adding macros.
Creating a new spreadsheet:
In Excel 3 sheets are already opened by default, now to add a new sheet :
• In the lowermost pane in Excel, you can find a button.
• Click on that button to add a new sheet.
• We can also achieve the same by Right-clicking on the sheet number
before which you want to insert the sheet.
• Click on Insert.
• Select Worksheet.
• Click OK.
Opening previous spreadsheet:
On the lowermost pane in Excel, you can find the name of the current sheet you
have opened.
On the left side of this sheet, the name of previous sheets are also available like
Sheet 2, Sheet 3 will be available at the left of sheet4, click on the number/name
of the sheet you want to open and the sheet will open in the same workbook.
For example, we are on Sheet 4, and we want to open Sheet 2 then simply just
click on Sheet2 to open it.
So when you store data in Excel and then share it with others, they can access it
easily.
But apart from that, you can also create your own formulas by combining two or
more functions or just by performing calculations using operators.
3. All the tools for data analysis
The core motive of having data is to analyze and get insights out of it. The good
news is Excel has some of the most powerful tools to analyze data.
Imagine you have data with thousands of rows, you can insert a pivot table out of
that data and create a summary table.
All those major types of charts that you need to use to present your data are
already there and you can insert them with a single click.
If you go to the Insert Tab, in the charts group, you can find all the charts which
you can insert.
Not just that, there’s also a button called recommended charts that you can use
to let Microsoft Excel recommend you the best possible chart to use for the data
you have in your worksheet.
Well, Excel allows you to print with a lot of customization where you can change
the margin, paper size, orientation, etc.
There are a whole bunch of options that you can use for page setup before
printing a report.
You can automate all kinds of activities from simple (make a text bold) to
complex (insert a pivot table) using a VBA code.
7. Transform and clean data
If you are one of those people who work with data a lot or you know someone
who works, there are a lot of situations where you need to deal with messy data
which you need to clean before you use it.
The process of cleaning and transforming data takes a big chunk of your time
and it can be a tedious process.
For this, Microsoft has introduced the power query which is a data transformation
and cleaning engine well you can load data from multiple sources, transform it,
and then load it back to the worksheet.
What makes power query such a powerful tool? Check out this complete
POWER QUERY guide to understand.
8. Store data with millions of rows
Well, there is no limit to data, but Excel has a limit in terms of rows and columns.
So that’s why Microsoft came up with Power Pivot where you can store data with
millions of rows and then you can perform calculations within Power Pivot.
And recently Microsoft has launched its all-in-one office app that you can use to
work on spreadsheets and mobile as well.
FUNCTION NO.1 USING SUMMATION FUNCTION.
The quickest and easiest way to sum a range of cells is to use the Excel
AutoSum button. It automatically enters an Excel SUM function in the selected
cell. The SUM function totals one or more numbers in a range of cells.
The first example, below, shows how to use the AutoSum feature
1. Select the blank cell in the row below the cells that you want to sum, cell
A5 in this example.
3. A SUM formula will appear in the active cell, with a reference to the cells
above. In the screen shot below, there is a SUM formula in cell
A5: =SUM(A1:A4)
NOTE: If all cells are not automatically included, you can extend the frame,
to select them.
These arguments can be cell references, or can be typed into the formula.
In the example above (=SUM(A1:A4)), there is one argument -- a reference to
cells A1:A4.
LAB WORK-
1. Calculate the total marks obtained by the students. For this, the marks of
every subject are added.
2. Drag the formula of cell H2 to get the total marks obtained by all students.
The output is shown in the following image.
3. Divide the total marks by 600. The values of the “total marks” column
become the numerator. Since the number of subjects is 6, the maximum
marks are 600 (100*6=600). This becomes the denominator.
4. Apply the following formula.
For percentage values (shown in the succeeding image), change the cell
formatting. Select column I and press “Ctrl+Shift+%.” Alternatively, select
“%” in the “number” group of the Home tab.
LAB WORK-
The most universally accepted average is the arithmetic mean, and Excel uses
the AVERAGE function to find it. The Excel AVERAGE function is used to
generate a number that represents a typical value from a range, distribution, or
list of numbers. It is calculated by adding all the numbers in the list, then dividing
the total by the number of values within the list.
3. Type a comma “,”. This is used to separate the two number ranges (this is
shown in the tooltip provided).
4. Select range E3:E11. Type a closing parenthesis “)” and press Enter.
For example
MEAN(AVERAGE) in Excel
We wish to find out the top 3 scores in the above data set. The formula to use will
be:
We get the result below:
In the above formula, the LARGE function retrieved the top nth values from a set
of values. So, we got the top 3 values as we used the array constant {1,2,3} into
LARGE for the second argument.
Later, the AVERAGE function returned the average of the values. As the function
can automatically handle array results, we don’t need not use Ctrl+Shift+Enter to
enter the formula.
LAB WORK-
Let’s now see how to find the median in Excel. Let’s Say we have the following
data set.
We want to find the median salary.
=MEDIAN (C2:C10)
Press Enter.
That’s because the total count of list entries is an even number. And for even
numbers, Excel returns the median as the average of the two middle numbers.
The MODE function is a premade function in Excel, which is used to find the
number seen most times.
It is typed =MODE.SNGL
Note: The mode is a type of average value, which describes where most of the
data is located. You can read more about mode in our: Statistics Mode Tutorial.
Let's have a look at an example where we help the Pokemon trainers to calculate
the mode of numbers of Pokeballs.
LAB WORK-
LAB WORK-
FUNCTION NO.8 USING SUM IF FUNCTION.
The SUMIF function is a premade function in Excel, which calculates the sum of
values in a range based on a true or false condition.
It is typed =SUMIF:
The [sum_range] is the range where the function calculates the sum.
The function can be repeated for the other Pokemon types to compare them:
Note: You can use the filling function for the other rows, but make sure to
use absolute references for the ranges.
Now, we can see the sum of total stats for the different types of Pokemon:
FUNCTION NO.9 USING MAX FUNCTION.
The MAX function is a premade function in Excel, which finds the highest number
in a range.
It is typed =MAX
The function ignores cells with text. It will only work for cells with numbers.
Note: There is another function called MIN, which finds the lowest value in a
range, the opposite of MAX.
Find the Pokemon which has the highest total stats in the range D2:D21:
The function has successfully found the highest value, 525. Cloyster has the
highest Total stats of the Pokemons in the range D2:D21.
Let's add text to a cell in the range D2:21 to see what happens. Type Alakazam
to D8.
LAB WORK-
FUNCTION NO.10 USING MIN FUNCTION.
The MIN function is a premade function in Excel, which finds the lowest number
in a range.
It is typed =MIN
The function ignores cells with text. It will only work for cells with numbers.
Note: There is another function called MAX, which finds the highest value in a
range, the opposite of MIN.
Find the Pokemon which has the lowest total stats in the range D2:D21:
The function has successfully found the lowest value, 200. Magikarp has the
lowest Total stats of the Pokemons in the range D2:D21.
Let's add text to a cell in the range D2:21 to see what happens. Type Kadabra
to D21.
LAB WORK-
1. Columns
Columns are vertical tabular data.The column includes the unique header,
which is on the top.The header defines which data you are seeing listed
downwards.In this example, D5(Sum of Attack) is the header.
2. Rows
Rows are horizontal tabular data.Data in the same row are related.In this
example, A8(Alakazam) is the Pokemon name.
Filters are used to select what data you see. In this example, there are two
filters enabled: Generation and Type 1.The filters are set to Generation
(1) and Type (Psychic).We will only see Generation 1 pokemonm that is
Type 1, Psychic.All pokemon in the table below the filter are of this
generation and type.
4. Values
Values define how you present the data.You can define how
you Summarize and Show values.In this example, values are defined for
the range B5:E5.The range B5:E5 has all the same value setting: Sum
The Sum is summarized in the range B14:E14.
Values settings view:
You can click the downwards arrow to change how the data is presented.
2. Layout
Drag and drop fields to the boxes to the right to display data in the table.
You can drag them to the four different boxes that we mentioned earlier
(four main components):
1. Filters
2. Rows
3. Columns
4. Values
In this example, we will drag and drop Sp. def to Values.
The settings of the fields that you have moved to the right side can be
changed.
This is possible in the four areas (Filters, rows, columns and, values).
FUNCTION NO.12 USING VLOOK-UP FUNCTION.
The VLOOKUP function is a premade function in Excel, which allows searches across columns.
Use the VLOOKUP function to find the Pokemon names based on their ID#:
H4 is where the search result is displayed. In this case, the Pokemons names
based on their ID#.
H3 selected as lookup_value. This is the cell where the search query is entered.
In this case the Pokemons ID#.
The function returns the #N/A value. This is because there have not been entered
any value to the Search ID# H3.
Have a look at that! The VLOOKUP function has successfully found the
Pokemon Squirtle which has the ID# 7.
It is typed =COUNTIF
1. Select a cell
2. Type =COUNTIF
3. Double click the COUNTIF command
4. Select a range
5. Type ,
6. Select a cell (the criteria, the value that you want to count)
7. Hit enter
Check if the Pokemon type is fire and has speed greater than 70:
Note: You can add more conditions by repeating steps 5-6 before hitting enter.
Since the value in cell B2 is not "Fire" the first condition is FALSE.
Since the value in cell C2 is less than 70 the second condition is also FALSE.
All conditions need to be TRUE for the AND function to return TRUE.
The function can be repeated with the filling function for each row to perform the
same check for each Pokemon:
Now, each row has a check for Fire Type and Speed greater than 70:
Only Charmeleon and Charizard both have Fire type and speed greater than 70,
so the function returns "TRUE".
LAB WORK-
It is typed =OR.
Example OR Function
Check if the Pokemon type is water OR has defense greater than 60:
Note: You can add more conditions by repeating steps 5-6 before hitting enter.
Since the value in cell B2 is not "Water" the first condition is FALSE.
Since the value in cell C2 is less than 60 the second condition is also FALSE.
At least one condition need to be TRUE for the OR function to return TRUE.
The function can be repeated with the filling function for each row to perform the
same check for each Pokemon:
Now, each row has a check for Water Type or Defense greater than 60:
For example:
• Ivysaur is not Water type, but it has more than 60 defense, so the function
returns "TRUE".
• Charmeleon is not Water type, and has less than 60 defense, so the
function returns "FALSE"
• Wartortle is both Water type and has more than 60 defense, so the
function returns "TRUE"
LAB WORK-
NO.16 SAMPLE QUESTIONAIRE
A questionnaire is a list of questions or items used to gather data from respondents
about their attitudes, experiences, or opinions. Questionnaires can be used to
collect quantitative and/or qualitative information.
• With a survey questionnaire, you can gather a lot of data in less time.
• There is less chance of any bias creeping if you have a standard set of
questions to be used for your target audience. You can apply logic to
questions based on the respondents’ answers, but the questionnaire will
remain standard for a group of respondents that fall in the same segment.
• Surveying online survey software is quick and cost-effective. It offers you a
rich set of features to design, distribute, and analyze the response data.
• It can be customized to reflect your brand voice. Thus, it can be used to
reinforce your brand image.
• The responses can be compared with the historical data and understand the
shift in respondents’ choices and experiences.
• Respondents can answer the questionnaire without revealing their identity.
Also, many survey software complies with significant data security and
privacy regulations.
Your survey design depends on the type of information you need to collect from
respondents. Qualitative questionnaires are used when there is a need to collect
exploratory information to help prove or disprove a hypothesis. Quantitative
questionnaires are used to validate or test a previously generated hypothesis.
However, most questionnaires follow some essential characteristics:
• Uniformity: Questionnaires are very useful to collect demographic
information, personal opinions, facts, or attitudes from respondents. One of
the most significant attributes of a research form is uniform design and
standardization. Every respondent sees the same questions. This helps
in data collection and statistical analysis of this data. For example, the retail
store evaluation questionnaire template contains questions for evaluating
retail store experiences. Questions relate to purchase value, range of
options for product selections, and quality of merchandise. These questions
are uniform for all customers.
• Exploratory: It should be exploratory to collect qualitative data. There is no
restriction on questions that can be in your questionnaire. For example, you
use a data collection questionnaire and send it to the female of the
household to understand her spending and saving habits relative to the
household income. Open-ended questions give you more insight and allow
the respondents to explain their practices. A very structured question list
could limit the data collection.
• Question Sequence: It typically follows a structured flow of questions to
increase the number of responses. This sequence of questions is screening
questions, warm-up questions, transition questions, skip questions,
challenging questions, and classification questions. For example,
our motivation and buying experience questionnaire template covers initial
demographic questions and then asks for time spent in sections of the store
and the rationale behind purchases
● SAMPLE QUESTIONNAIRE
Name:-
Contact no:-
Gender:-
a) Male
b) Female
Age:-
a) 25-35 years
b) 35-45 years
c) 45-55 years
d) Above 55 years
Occupation:-
a) Employee
b) Housewife
c) Student
d) Business
e) Retired
a) 0- 25000 rupees
b) 25000-40000 rupees
c) 40000-60000 rupees
d) Above 60000 rupees
8 Do the agents provide you with correct information regarding their products and
services?
a) Yes
b) No
10 Agents do not tell or disclose the negative points of the scheme or policies to
the consumers?
a) Strongly agree
b) Agree
c) Neutral
d) Disagree
e) Strongly disagree
11 While taking a policy all terms and conditions are explained to the consumer?
a) Strongly agree
b) Agree
c) Neutral
d) Disagree
e) Strongly disagree
12 How was the services in terms of procedures, duration, and meeting customer
needs? a) Fully satisfied
b) Satisfied to certain extent
c) Neutral
d) Unsatisfied
e) Utterly unsatisfied
14 Have you received any incentive from insurance premium through agent?
a) Yes
b) No
GOOGLE FORM - Google Forms is a free online tool from Google which allows
users to create forms, surveys, and quizzes as well as to collaboratively edit and
share the forms with other people. Educators can use Google forms to assess their
students at the beginning of the class and gauge pre-existing knowledge.
Furthermore, Google forms can be used to give feedback to and receive feedback
from students and parents. Similarly, students can use Google forms to assess
their own learning and set the learning goals as well as to collect data for their
research projects.
Steps To Create a new form:-
Choose an option:
From forms.google.com, click Blank or choose a template.
From drive.google.com, click Newand thenscroll to Google Forms. Next to Google
Forms, point to the Right arrow "" and click Blank form, Blank quiz, or From a
template.
Name your form: In the top-left corner, click Untitled form or the template form
name and enter a new name.
(Optional) Do any of the following actions:
Add a description: Under the form name, add your text.
Add a header: change the theme and background color, or font style: Click
Customize Theme: and then choose your options.
Add questions
If you’re using a template, you can skip to Edit questions to edit your form.
Note: Changes are automatically saved. To preview your changes any time, at
the top right, click Preview "".
1 Click Untitled Question and enter your question. You get suggestions based on
your type of question.
2 (Optional) To change the question type, click the Down arrow "" and choose an
option.
3 Add response options (if applicable for your question type).
4 To add a copy of the existing question, click Duplicate
5 (Optional) To specify if people must answer the question, click Required.
6 To add a new question, click Add question "".
Edit questions
You can add things like images and videos to a question at any time. You can
also reorder and delete questions.
Select a question and do any of the following actions:
1 Drag to reorder a question. You can also drag and reorder answers.
2 Delete a question.
3 Click More "" to: Add a description or hint. Shuffle the answer order.
4 To shuffle the question order, click Settings. Next to Presentation, click the
Down arrow ""and thenturn on Shuffle question order.
5 Add an image to a question. You can also add images to answers or forms.
6 Add a YouTube video.
QUESTIONAIRE GOOGLE FORM:-