Gaurav Final

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 42

1

AS PARTIAL FULFILLMENT FOR THE AWARD


OF DEGREE IN MASTERS OF BUSINESS
ADMINISTRATIONS
FROM

DR. APJ ABDUL KALAM TECHNICAL


UNIVERSITY, LUCKNOW, UTTAR
PRADESH
A, REPORT ON

KMBN151 IT SKILLS LAB


–1
MBA 1st YEAR 1st SEMESTER
SUBMITTED TO
DEPARTMENT OF MANAGEMENT STUDIES

BANSAL INSTITUTE OF ENGINEERING &


TECHNOLOGY,
LUCKNOW, UTTAR PRADESH

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


2

SUBMITTED BY
<GAURAV SINGH>

Acknowledgement

<GAURAV SINGH>

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


3

LIST OF ACTIVITES DONE IN THE IT SKILLS


LAB SESSIONS
MS Excel
1. Pivot table
2. What if Analysis
a. Scenario Manager
b. Goal seeking
3. V-Lookup
4. Dashboard
5. Charting
6. Logical Formulae
a. Sum / Sum if
b. Count if / Count A / Count ifs
c. Index
d. Index Match
e. Indirect
f. Match
g. Subtotal
7. Statistical Formulae
a. Mean
b. Median
c. Mode
d. Standard Deviation
e. Correlation
f. Regression
8. Data Analysis using Excel
9. Conditional Formatting
10. Macros
11. Slicer
MS Word
1. Formatting Paragraph and Text
2. Mail Merge
3. Page Design and Layout
4. Using Graphics, Tables, Charts
MS Presentation
1. Creating Presentation
2. Inserting Animations
3. Slide Show

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


4

PivotTable
A PivotTable is a powerful tool to calculate, summarize, and analyze data that lets you see
comparisons, patterns, and trends in your data. PivotTables work a little bit differently depending on
what platform you are using to run Excel.

Create Pivot Table in Excel


1. Select the cells you want to create a PivotTable from.

Note: Your data should be organized in columns with a single header row. See the Data
format tips and tricks section for more details.

2. Select Insert > PivotTable.

3. This creates a PivotTable based on an existing table or range.

Note: Selecting Add this data to the Data Model adds the table or range being used for
this PivotTable into the workbook’s Data Model. Learn more.

4. Choose where you want the PivotTable report to be placed. Select New Worksheet to
place the PivotTable in a new worksheet or Existing Worksheet and select where you
want the new PivotTable to appear.
5. Select OK.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


5

INTRODUCTION TO WHAT-IF ANALYSIS


What-If Analysis is the process of changing the values in cells to see how those changes will affect
the outcome of formulas on the worksheet.

Three kinds of What-If Analysis tools come with Excel: Scenarios, Goal Seek, and Data Tables.
Scenarios and Data tables take sets of input values and determine possible results. A Data Table
works with only one or two variables, but it can accept many different values for those variables. A
Scenario can have multiple variables, but it can only accommodate up to 32 values. Goal Seek works
differently from Scenarios and Data Tables in that it takes a result and determines possible input
values that produce that result.

In addition to these three tools, you can install add-ins that help you perform What-If Analysis, such
as the Solver add-in. The Solver add-in is similar to Goal Seek, but it can accommodate more
variables. You can also create forecasts by using the fill handle and various commands that are built
into Excel.

For example, you can do What-If Analysis to build two budgets that each assumes a certain level of
revenue. Or, you can specify a result that you want a formula to produce, and then determine what
sets of values will produce that result. Excel provides several different tools to help you perform the
type of analysis that fits your needs.

SCENARIO
A Scenario is a set of values that Excel saves and can substitute automatically in cells on a worksheet.
You can create and save different groups of values on a worksheet and then switch to any of these
new scenarios to view different results.

For example, suppose you have two budget scenarios: a worst case and a best case. You can use the
Scenario Manager to create both scenarios on the same worksheet, and then switch between them. For
each scenario, you specify the cells that change and the values to use for that scenario. When you
switch between scenarios, the result cell changes to reflect the different changing cell values.

1. Changing cells

2. Result cell

1. Changing cells

2. Result cell

If several people have specific information in separate workbooks that you want to use in scenarios,
you can collect those workbooks and merge their scenarios.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


6

After you have created or gathered all the scenarios that you need, you can create a Scenario
Summary Report that incorporates information from those scenarios. A scenario report displays all the
scenario information in one table on a new worksheet.

GOAL SEEK
If you know the result that you want from a formula, but you're not sure what input value the formula
requires to get that result, you can use the Goal Seek feature. For example, suppose that you need to
borrow some money. You know how much money you want, how long a period you want in which to
pay off the loan, and how much you can afford to pay each month. You can use Goal Seek to
determine what interest rate you must secure in order to meet your loan goal.

Cells B1, B2, and B3 are the values for the loan amount, term length, and interest rate.

Cell B4 displays the result of the formula =PMT(B3/12,B2,B1).

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


7

VLOOKUP function

Use VLOOKUP when you need to find things in a table or a range by row. For example, look
up a price of an automotive part by the part number, or find an employee name based on
their employee ID.

In its simplest form, the VLOOKUP function says:

=VLOOKUP(What you want to look up, where you want to look for it, the column number in
the range containing the value to return, return an Approximate or Exact match – indicated
as 1/TRUE, or 0/FALSE).

How to get started

There are four pieces of information that you will need in order to build the VLOOKUP
syntax:

1. The value you want to look up, also called the lookup value.

2. The range where the lookup value is located. Remember that the lookup value
should always be in the first column in the range for VLOOKUP to work correctly.
For example, if your lookup value is in cell C2 then your range should start with
C.

3. The column number in the range that contains the return value. For example, if
you specify B2:D11 as the range, you should count B as the first column, C as the
second, and so on.

4. Optionally, you can specify TRUE if you want an approximate match or FALSE if
you want an exact match of the return value. If you don't specify anything, the
default value will always be TRUE or approximate match.

Now put all of the above together as follows:

=VLOOKUP(lookup value, range containing the lookup value, the column number in the
range containing the return value, Approximate match (TRUE) or Exact match (FALSE)).

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


8

Examples

Here are a few examples of VLOOKUP:

Example 1

Example 2

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


9

Example 3

Example 4

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


10

Example 5

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


11

LOGICAL FORMULAE

a. SUM/ SUM IF

The SUM function adds values. You can add individual values, cell references or ranges or a mix of all
three.

For example:

 =SUM(A2:A10) Adds the values in cells A2:10.

 =SUM(A2:A10, C2:C10) Adds the values in cells A2:10, as well as cells C2:C10.

SUMIF

You use the SUMIF function to sum the values in a range that meet criteria that you specify. For
example, suppose that in a column that contains numbers, you want to sum only the values that are
larger than 5. You can use the following formula: =SUMIF(B2:B25,">5")

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


12

b. COUNTIF /COUNTA /COUNIFS


Use COUNTIF, one of the statistical functions, to count the number of cells that meet a criterion; for
example, to count the number of times a particular city appears in a customer list.

In its simplest form, COUNTIF says:

 =COUNTIF(Where do you want to look?, What do you want to look for?)

For example:

 =COUNTIF(A2:A5,"London")

 =COUNTIF(A2:A5,A4)

COUNTA

Description

The COUNTA function counts the number of cells that are not empty in a range.

Syntax

COUNTA(value1, [value2], ...)

The COUNTA function syntax has the following arguments:

 value1 Required. The first argument representing the values that you want to count.
 value2, ... Optional. Additional arguments representing the values that you want to count, up
to a maximum of 255 arguments.

COUNTIFS

The COUNTIFS function applies criteria to cells across multiple ranges and counts the number of
times all criteria are met.

Syntax

COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]…)

The COUNTIFS function syntax has the following arguments:

 criteria_range1 Required. The first range in which to evaluate the associated criteria.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


13

 criteria1 Required. The criteria in the form of a number, expression, cell reference, or text that
define which cells will be counted. For example, criteria can be expressed as 32, ">32", B4,
"apples", or "32".

c. INDEX
The INDEX function returns a value or the reference to a value from within a table or range.

There are two ways to use the INDEX function:

 If you want to return the value of a specified cell or array of cells, see Array form.

 If you want to return a reference to specified cells, see Reference form.

Syntax

INDEX(array, row_num, [column_num])

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


14

d. INDEX MATCH

Using INDEX and MATCH instead of VLOOKUP

There are certain limitations with using VLOOKUP—the VLOOKUP function can only look up a value
from left to right. This means that the column containing the value you look up should always be
located to the left of the column containing the return value. Now if your spreadsheet isn't built this
way, then do not use VLOOKUP. Use the combination of INDEX and MATCH functions instead.

This example shows a small list where the value we want to search on, Chicago, isn't in the leftmost
column. So, we can't use VLOOKUP. Instead, we'll use the MATCH function to find Chicago in the
range B1:B11. It's found in row 4. Then, INDEX uses that value as the lookup argument, and finds the
population for Chicago in the 4th column (column D). The formula used is shown in cell A14.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


15

e. INDIRECT

Description

Returns the reference specified by a text string. References are immediately evaluated to display their
contents. Use INDIRECT when you want to change the reference to a cell within a formula without
changing the formula itself.

Syntax

INDIRECT(ref_text, [a1])

The INDIRECT function syntax has the following arguments :

Ref_text Required. A reference to a cell that contains an A1-style reference, an R1C1-style reference,
a name defined as a reference, or a reference to a cell as a text string. If ref_text is not a valid cell
reference, INDIRECT returns the #REF! error value.

 If ref_text refers to another workbook (an external reference), the other workbook must be open. If the
source workbook is not open, INDIRECT returns the #REF! error value.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


16

f. MATCH
The MATCH function searches for a specified item in a range of cells, and then returns the relative
position of that item in the range. For example, if the range A1:A3 contains the values 5, 25, and 38,
then the formula =MATCH(25,A1:A3,0) returns the number 2, because 25 is the second item in the
range.

Syntax

MATCH(lookup_value, lookup_array, [match_type])

The MATCH function syntax has the following arguments:

 lookup_value Required. The value that you want to match in lookup_array. For example, when
you look up someone's number in a telephone book, you are using the person's name as the
lookup value, but the telephone number is the value you want.

The lookup_value argument can be a value (number, text, or logical value) or a cell reference to a
number, text, or logical value.

 lookup_array Required. The range of cells being searched.

 match_type Optional. The number -1, 0, or 1. The match_type argument specifies how Excel
matches lookup_value with values in lookup_array. The default value for this argument is 1.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


17

g. SUBTOTAL

This article describes the formula syntax and usage of the SUBTOTAL function in Microsoft Excel .

Description

Returns a subtotal in a list or database. It is generally easier to create a list with subtotals by using
the Subtotal command in the Outline group on the Data tab in the Excel desktop application. Once
the subtotal list is created, you can modify it by editing the SUBTOTAL function.

Syntax

SUBTOTAL(function_num,ref1,[ref2],...)

The SUBTOTAL function syntax has the following arguments:

 Function_num Required. The number 1-11 or 101-111 that specifies the function to use for
the subtotal. 1-11 includes manually-hidden rows, while 101-111 excludes them; filtered-out cells
are always excluded.

Function_num Function_num Function


(includes hidden rows) (ignores hidden rows)
1 101 AVERAGE
2 102 COUNT
3 103 COUNTA
4 104 MAX
5 105 MIN
6 106 PRODUCT
7 107 STDEV
8 108 STDEVP
9 109 SUM
10 110 VAR
11 111 VARP

 Ref1 Required. The first named range or reference for which you want the subtotal.
 Ref2 Optional. Named ranges or references 2 to 254 for which you want the subtotal.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


18

STATISTICAL FORMULAE

Average which is the arithmetic mean, and is calculated by adding a group of numbers and then
dividing by the count of those numbers. For example, the average of 2, 3, 3, 5, 7, and 10 is 30 divided
by 6, which is 5.

Median which is the middle number of a group of numbers; that is, half the numbers have values
that are greater than the median, and half the numbers have values that are less than the median. For
example, the median of 2, 3, 3, 5, 7, and 10 is 4.

Mode which is the most frequently occurring number in a group of numbers. For example, the
mode of 2, 3, 3, 5, 7, and 10 is 3.

Standard Deviation STDEV.S(number1,[number2],...)

The STDEV.S function syntax has the following arguments:

 Number1 Required. The first number argument corresponding to a sample of a population.


You can also use a single array or a reference to an array instead of arguments separated by
commas.

 Number2, ... Optional. Number arguments 2 to 254 corresponding to a sample of a


population. You can also use a single array or a reference to an array instead of arguments

separated by commas .

Remarks

 STDEV.S assumes that its arguments are a sample of the population. If your data represents the
entire population, then compute the standard deviation using STDEV.P.

 The standard deviation is calculated using the "n-1" method.

 Arguments can either be numbers or names, arrays, or references that contain numbers.

 Logical values and text representations of numbers that you type directly into the list of
arguments are counted.

 If an argument is an array or reference, only numbers in that array or reference are counted.
Empty cells, logical values, text, or error values in the array or reference are ignored.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


19

 Arguments that are error values or text that cannot be translated into numbers cause errors.

 If you want to include logical values and text representations of numbers in a reference as part of
the calculation, use the STDEVA function.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


20

Correlation
The CORREL function returns the correlation coefficient of two cell ranges. Use the correlation
coefficient to determine the relationship between two properties. For example, you can examine the
relationship between a location's average temperature and the use of air conditioners .

CORREL(array1, array2)

The CORREL function syntax has the following arguments:

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


21

DASHBOARD

A dashboard is a visual representation of key metrics that allow you to quickly view and analyze your
data in one place. Dashboards not only provide consolidated data views, but a self-service business
intelligence opportunity, where users are able to filter the data to display just what’s important to
them. In the past, Excel reporting often required you to generate multiple reports for different people
or departments depending on their needs.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


22

CHARTING

Charts help you visualize your data in a way that creates maximum impact on your audience. Learn to
create a chart and add a trendline. You can start your document from a recommended chart or

choose one from our collection of pre-built chart templates .

Create a chart
1. Select data for the chart.

2. Select Insert > Recommended Charts.

3. Select a chart on the Recommended Charts tab, to preview the chart.

Note: You can select the data you want in the chart and press ALT + F1 to create a chart
immediately, but it might not be the best chart for the data. If you don’t see a chart you like,
select the All Charts tab to see all chart types.

4. Select a chart.

5. Select OK.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


23

CONDITIONAL FORMATTING
Conditional formatting can help make patterns and trends in your data more apparent. To use it, you
create rules that determine the format of cells based on their values, such as the following mont Use

the Quick Analysis button to apply selected conditional formatting to the selected data. The
Quick Analysis button appears automatically when you select data.

Select the data that you want to conditionally format. The Quick Analysis button appears on the lower-
right corner of the selection.

1. Click the Quick Analysis button , or press Ctrl+Q.

2. In the pop-up that appears, on the Formatting tab, move your mouse over the different options to
see a Live Preview on your data, and then click on the formatting option you want.

3.

Notes:

 The formatting options that appear in the Formatting tab depend on the data you have selected. If
your selection contains only text, then the available options are Text, Duplicate, Unique, Equal To,
and Clear. When the selection contains only numbers, or both text and numbers, then the options
are Data Bars, Colors, Icon Sets, Greater, Top 10%, and Clear.
 Live preview will only render for those formatting options that can be used on your data. For example,
if your selected cells don't contain matching data and you select Duplicate, the live preview will not
work.
 Select one or more cells in a range, table, or PivotTable report.
 On the Home tab, in the Styles group, click the arrow next to Conditional Formatting, and then
click Color Scales.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


24

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


25

SLICERS

Slicers provide buttons that you can click to filter tables, or PivotTables. In addition to quick
filtering, slicers also indicate the current filtering state, which makes it easy to understand what
exactly is currently displayed.

Create a Slicer to Filter data in a table or pivot table

1. Click anywhere in the table or PivotTable.

2. On the Insert tab, select Slicer.

3. In the Insert Slicers dialog box, select the check boxes for the fields you want to display, then
select OK.

4. A slicer will be created for every field that you selected. Clicking any of the slicer buttons will
automatically apply that filter to the linked table or PivotTable.

Notes:

 To select more than one item, hold Ctrl, and then select the items that you want to show.

 To clear a slicer's filters, select Clear Filter in the slicer.

FORMAT A SLICER
1. You can adjust your slicer preferences in the Slicer tab (in newer versions of Excel), or the Design tab
(Excel 2016 and older versions) on the ribbon.
2. On the Slicer or Design tab, select a color style that you want.

Note: Select and hold the corner of a slicer to adjust and resize

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


26

MACROS

If you have tasks in Microsoft Excel that you do repeatedly, you can record a macro to automate those
tasks. A macro is an action or a set of actions that you can run as many times as you want. When you
create a macro, you are recording your mouse clicks and keystrokes. After you create a macro, you can
edit it to make minor changes to the way it works.

Suppose that every month, you create a report for your accounting manager. You want to format the
names of the customers with overdue accounts in red, and also apply bold formatting. You can create
and then run a macro that quickly applies these formatting changes to the cells you select.

How?

Before you record a macro

Macros and VBA tools can be found on the Developer tab, which is hidden by default, so the
first step is to enable it. For more information, see Show the Developer tab.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


27

Record a macro

1. In the Code group on the Developer tab, click Record Macro.


2. Optionally, enter a name for the macro in the Macro name box, enter a shortcut key in the Shortcut key box, and a description in
the Description box, and then click OK to start recording.

3. Perform the actions you want to automate, such as entering boilerplate text or filling down a column of data.
4. On the Developer tab, click Stop Recording.

Take a closer look at the macro

You can learn a little about the Visual Basic programming language by editing a macro.

To edit a macro, in the Code group on the Developer tab, click Macros, select the name of the macro,
and click Edit. This starts the Visual Basic Editor.

See how the actions that you recorded appear as code. Some of the code will probably be clear to
you, and some of it may be a little mysterious.

Experiment with the code, close the Visual Basic Editor, and run your macro again. This time, see if
anything different happens!

Next steps

 To learn more about creating macros, see Create or delete a macro.

 To learn about how to run a macro, see Run a macro.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


28

MS WORD:
FORMATTING PARAGRAPH

Change paragraph alignment

1. Select the paragraphs you want to change.

2. To center them, select Home > Center .

3. To align them along the right margin, select Home > Align Right .

4. To align along both margins, select Home > Justify .


Change paragraph spacing

1. Select the paragraphs you want to change.

2. Select Home > Line and Paragraph Spacing.

3. Choose an option.

Add bullets or numbering

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


29

1. Select the paragraphs you want to change.

2. Select Home > Bullets or Numbering.

Change paragraph indents

1. Select the paragraphs you want to change.

2. Select Home > Increase Indent or Decrease Indent.

FORMATTING TEXT

Change the text size

Select the text that you want to change, and then on the ribbon, do one of the following:

 Specify a font size on the Message tab in the Basic Text group.

 Specify a font size on the Format Text tab in the Font group.

 Press Ctrl+Shift+> or Ctrl+Shift+<

Apply a predefined font theme

Change the fonts in your message by selecting a new font theme. A font theme applies to all of the
headings and body text in the message that you are working on.

1. Click Options.

2. In the Themes group, click Fonts.

Note: If you want to change the font, colors, and effects in your message, click Themes instead
of Fonts.

3. Under Office, click the predefined font theme that you want to use.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


30

MAIL MERGE

Here are some tips to prepare your Excel spreadsheet for a mail merge.

 Column names in your spreadsheet match the field names you want to insert in your mail merge.
For example, to address readers by their first name in your document, you'll need separate
columns for first and last names.

 All data to be merged is present in the first sheet of your spreadsheet.

 Data entries with percentages, currencies, and postal codes are correctly formatted in the
spreadsheet so that Word can properly read their values.

 The Excel spreadsheet to be used in the mail merge is stored on your local machine.

 Changes or additions to your spreadsheet are completed before it's connected to your mail
merge document in Word.

Notes:

 You can import information from your Excel spreadsheet by importing information from a
comma-separated value (.csv) or a text (.txt) file and use the Text Import Wizard to build a new
spreadsheet.

 For more information, see Prepare your Excel data source for mail merge in Word.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


31

Connect and edit the mailing list

Connect to your data source. For more info, see Data sources you can use for a mail merge.

Edit your mailing list

1. Choose Edit Recipient List.

2. In Mail Merge Recipients, clear the check box next to the name of any person who you don't
want to receive your mailing.

Note: You also can sort or filter the list to make it easier to find names and addresses. For more
info, see Sort the data for a mail merge or Filter the data for a mail merge.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


32

PAGE LAYOUT
Change your document's layout to get it just the way you want.

Margins

1. Select Layout > Margins.


2. Choose the margins you want or select Custom Margins to define your own.

Page Orientation

1. To change orientation, select Layout > Orientation.


2. Select Portrait or Landscape.

Line Spacing

1. Select Home > More Paragraph Options > Line Spacing.


2. Choose the spacing you want.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


33

USING GRAPICS, TABLES, CHARTS


You can make a chart in Word. If you have lots of data to chart, create your chart in Excel, and
then copy from Excel to another Office program. This is also the best way if your data changes
regularly and you want your chart to always reflect the latest numbers. In that case, when you copy
the chart, keep it linked to the original Excel file.

To create a simple chart from scratch in Word, click Insert > Chart, and pick the chart you want.

1. Click Insert > Chart.

2. Click the chart type and then double-click the chart you want.

Tip: For help deciding which chart is best for your data, see Available chart types.

3. In the spreadsheet that appears, replace the default data with your own information.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


34

Tip: When you insert a chart, small buttons appear next to its upper-right corner. Use the Chart

Elements button to show, hide, or format things like axis titles or data labels. Or use

the Chart Styles button to quickly change the color or style of the chart. The Chart

Filters button is a more advanced option that shows or hides data in your chart.

4. When you’ve finished, close the spreadsheet.

5. If you want, use the Layout Options button to arrange the chart and text in your document.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


35

MS PRESENTATION:
CREATING PRESENTATION
Create a presentation

1. Open PowerPoint.
2. In the left pane, select New.
3. Select an option:
 To create a presentation from scratch, select Blank Presentation.
 To use a prepared design, select one of the templates.
 To see tips for using PowerPoint, select Take a Tour, and then select Create, .

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


36

Add a slide

1. In the thumbnails on the left pane, select the slide you want your new slide to follow.

2. In the Home tab, in the Slides section, select New Slide.

3. In the Slides section, select Layout, and then select the layout you want from the menu.

Add and format text

1. Place the cursor inside a text box, and then type something.
2. Select the text, and then select one or more options from the Font section of the Home tab, such
as Font, Increase Font Size, Decrease Font Size, Bold, Italic, Underline, etc.
3. To create bulleted or numbered lists, select the text, and then select Bullets or Numbering.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


37

Add a picture, shape, and more

1. Go to the Insert tab.


2. To add a picture:
 In the Images section, select Pictures.
 In the Insert Picture From menu, select the source you want.
 Browse for the picture you want, select it, and then select Insert.
3. To add illustrations:
 In the Illustrations section, select Shapes, Icons, 3D Models, SmartArt, or Chart.
 In the dialog box that opens when you click one of the illustration types, select the item you
want and follow the prompts to insert it.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


38

INSERTING ANIMATIONS
Add animation and effects to text, pictures, shapes, and objects in your PowerPoint presentation.

Add animations and effects

1. Select the object or text you want to animate.


2. Select Animations and choose an animation.
3. Select Effect Options and choose an effect.

Manage animations and effects

There are different ways to start animations in your presentation:

 On Click - Start an animation when you click a slide.


 With Previous - Play an animation at the same time as the previous animation in your sequence.
 After Previous - Start an animation immediately after the previous one happens.
 Duration - Lengthen or shorten an effect.
 Delay - Add time before an effect runs.

Add more effects to an animation

1. Select an object or text with an animation.


2. Select Add Animation and choose one.

Change the order of animations

1. Select an animation marker.


2. Choose the option you want:
 Move Earlier - Make an animation appear earlier in the sequence.
 Move Later - Make an animation occur later in the sequence.

Add animation to grouped objects

You can add an animation to grouped objects, text, and more.

1. Press Ctrl and select the objects you want.


2. Select Format > Group > Group to group the objects together.
3. Select Animations and choose an animation.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


39

SLIDE SHOW
On the Slide Show tab, in the Start Slide Show group, select From Beginning.

Now, if you are working with PowerPoint on a single monitor and you want to display Presenter view,

in Slide Show view, on the control bar at the bottom left, select , and then Show Presenter
View.

Use the controls in Presenter view

 To move to the previous or next slide, select Previous or Next.

 To view all the slides in your presentation, select See all slides.

Tip: You’ll see thumbnails of all the slides in your presentation (as shown below), making it easy
to jump to a specific slide in the show.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


40

 To view a detail in your slide up close, select Zoom into slide, and then point to the part you
want to see.

For more details on zooming in, see Zoom in to part of a slide.

 To point to or write on your slides as you present, select Pen and laser pointer tools.

Press the Esc key when you want to turn off the pen, laser pointer, or highlighter.

 To hide or unhide the current slide in your presentation, select Black or unblack slide show.

You can use PowerPoint on your smartphone as a remote control to run your presentation and view
your speaker notes. See Using a laser pointer on your smartphone when presenting in PowerPoint for
more information, including a brief video.

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


41

Swap the Presenter view and Slide view monitors

To manually determine which screen shows your notes in Presenter view and which shows only the
slides themselves, on the task bar at the top of Presenter view, select Display Settings, and then
select Swap Presenter View and Slide Show.

What the notes look like in Presenter view

Tip: You can add notes either while you’re presenting, directly from Presenter view, or as you’re
editing your presentation. For information on how to add speaker notes to your presentation see Add
speaker notes to your slides.

When your computer is connected to a projector and you start the slide show , Presenter
View appears on your computer's screen, while only the slides appear on the projector screen. In
Presenter view, you can see your notes as you present, while the audience sees only your slides.

The notes appear in a pane on the right. If you need to add or delete something, simply click in the
text box to edit it. The text wraps automatically, and a vertical scroll bar appears if necessary. You can
change the size of the text in the Notes pane by using the two buttons at the lower left corner of the
Notes pane:

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24


42

To change the size of the panes in Presenter View, point your mouse at the vertical line that separates
them, then click and drag.

Tip: If you don't need to see the current slide in Presenter View at all, and would like your notes to be
larger, drag that vertical separator line all the way to the left.

Turn off Presenter view

If you want Presenter view turned off while you are showing your presentation to others:

On the Slide Show tab of the ribbon, clear the check box named Use Presenter View .

KMBN151 IT SKILLS LAB – 1 / GAURAV SINGH / 2023-24

You might also like