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

itskill practical file

The document provides an introduction to Microsoft Excel, Word, and PowerPoint, detailing their functionalities, basic operations, and advanced features. It covers essential tasks such as data entry, formatting, and using formulas in Excel, as well as document creation and editing in Word, and presentation design in PowerPoint. Each section includes step-by-step instructions for common tasks and features within the software.

Uploaded by

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

itskill practical file

The document provides an introduction to Microsoft Excel, Word, and PowerPoint, detailing their functionalities, basic operations, and advanced features. It covers essential tasks such as data entry, formatting, and using formulas in Excel, as well as document creation and editing in Word, and presentation design in PowerPoint. Each section includes step-by-step instructions for common tasks and features within the software.

Uploaded by

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

Introduction to MS Excel

1. MS Excel is a spreadsheet software developed by Microsoft.


2. It is part of the Microsoft Office Suite.
3. MS Excel is used for data entry, calculations, and data analysis.
4. An Excel file is saved with a .xls or .xlsx file extension.
5. Worksheets are the individual pages in an Excel workbook.

Basic Operations in MS Excel

6. Starting MS Excel: Open MS Excel from the Start menu or desktop shortcut.
7. Creating a New Workbook: Use "File" > "New" to create a blank workbook.
8. Opening an Existing Workbook: Use "File" > "Open" to access saved files.
9. Saving a Workbook: Save work using "File" > "Save" or "Save As".
10. Renaming a Workbook: Save the file with a new name using "Save As".
11. Navigating Cells: Use arrow keys or click with the mouse to move between cells.
12. Entering Data: Click on a cell and type to enter data.
13. Editing Data: Double-click on a cell to modify its contents.
14. Deleting Data: Use the "Delete" key to clear cell contents.
15. Copying Data: Use "Ctrl + C" to copy cell data.
16. Pasting Data: Use "Ctrl + V" to paste copied data.
17. Cutting Data: Use "Ctrl + X" to cut data from cells.
18. Undo and Redo: Use "Ctrl + Z" to undo and "Ctrl + Y" to redo actions.
19. Finding Data: Use "Ctrl + F" to locate specific data in the sheet.

Formatting Cells

20. Changing Font Style: Select a font from the Home tab.
21. Adjusting Font Size: Change font size to suit your data.
22. Bold, Italic, and Underline: Use "Ctrl + B", "Ctrl + I", and "Ctrl + U".
23. Aligning Text: Align text left, center, or right using alignment options.
24. Changing Cell Color: Use the "Fill Color" tool to shade cells.
25. Changing Text Color: Use the "Font Color" tool to modify text color.
26. Merging Cells: Combine multiple cells into one using the "Merge & Center" option.
27. Formatting Numbers: Set number formats like currency, percentage, or decimal.
28. Adjusting Column Width: Drag column borders or use "Format" > "Column Width".
29. Adjusting Row Height: Drag row borders or use "Format" > "Row Height".
Data Management

39. Sorting Data: Use the "Sort" option to arrange data in ascending or descending order.
40. Filtering Data: Apply filters to display specific data using the "Filter" tool.
41. Creating Tables: Convert a data range into a table for better formatting.
42. Freezing Panes: Lock rows or columns using "View" > "Freeze Panes".
43. Adding Comments: Insert comments in cells for notes or instructions.
44. Data Validation: Restrict data entry to specific formats or ranges.

Charts and Visualization

45. Inserting Charts: Use the "Insert" tab to create bar, pie, or line charts.
46. Formatting Charts: Customize chart elements like titles and axes.
47. Using Conditional Formatting: Highlight cells based on conditions.
48. Creating Pivot Tables: Summarize and analyze data using Pivot Tables.

Advanced Features

49. Linking Data: Link cells between different sheets or workbooks.


50. Protecting Worksheets: Add passwords to restrict editing in sheets.

Excel Formulas

1. COUNT: Counts the number of cells that contain numerical values within a range.

Example: =COUNT(A1:A10)

2. COUNTA: Counts all nonempty cells in a range, including text, numbers, and errors.

Example: =COUNTA(A1:A10)

3. PROPER: Converts the first letter of each word in a text string to uppercase and the rest to lowercase.

Example: =PROPER("hello world") returns "Hello World"


4. LEN: Returns the length (number of characters) of a text string, including spaces.

Example: =LEN("Hello") returns 5

5. SUMIF: Adds up cells that meet a specific criterion.

Example: =SUMIF(A1:A10, ">5") adds all values in the range A1:A10 that are greater than 5

6. UPPER: Converts all letters in a text string to uppercase.

Example: =UPPER("hello") returns "HELLO"

7. LOWER: Converts all letters in a text string to lowercase.

Example: =LOWER("HELLO") returns "hello"

8. LARGE: Returns the nth largest value from a set of values.

Example: =LARGE(A1:A10, 2) returns the 2nd largest value in the range A1:A10

9. SMALL: Returns the nth smallest value from a set of values.

Example: =SMALL(A1:A10, 3) returns the 3rd smallest value in the range A1:A10

10. RIGHT: Extracts a specified number of characters from the end (right side) of a text string.

Example: =RIGHT("Hello", 2) returns "lo"

11. LEFT: Extracts a specified number of characters from the beginning (left side) of a text string.

Example: =LEFT("Hello", 2) returns "He"

12. COUNTIF: Counts cells in a range that meet a single criterion.

Example: =COUNTIF(A1:A10, "Yes") counts cells in A1:A10 with "Yes"

13. SUM: Adds up all numbers in a range.


Example: =SUM(A1:A10)

14. PRODUCT: Multiplies all numbers in a range together.

Example: =PRODUCT(A1:A10)

15. MAX: Returns the largest number in a range.

Example: =MAX(A1:A10)

16. MIN: Returns the smallest number in a range.


Example: =MIN(A1:A10)

17. COUNTBLANK: Counts the number of empty cells in a range.


Example: =COUNTBLANK(A1:A10)

18. TODAY: Returns the current date.

Example: =TODAY() (no arguments required)

19. TIME: Returns a specific time given hours, minutes, and seconds.

Example: =TIME(14, 30, 0) returns "2:30 PM"

20. CONCATENATE: Combines (joins) two or more text strings into one. In newer versions of Excel,
CONCATENATE has been replaced by the CONCAT and TEXTJOIN functions.

Example: =CONCATENATE("Hello", " ", "World") returns "Hello World"

21. AVERAGE: Calculates the average (arithmetic mean) of a group of numbers.

Example: =AVERAGE(A1:A10) returns the average value of numbers in the range A1:A10

22. COUNTIF: Counts the number of cells in a range that meet a specific condition (criterion).

Example: =COUNTIF(A1:A10, ">10") counts how many cells in A1:A10 have values greater than
23. RANDBETWEEN: Generates a random integer between two specified numbers. This value
recalculates every time the worksheet is recalculated.

Example: =RANDBETWEEN(1, 100) returns a random number between 1 and 100

24. ROMAN: Converts an Arabic numeral (standard number) to Roman numerals.

Example: =ROMAN(2023) returns "MMXXIII"

25. IFERROR: Returns a specified value if a formula evaluates to an error; otherwise, it returns the result
of the formula.

Example: =IFERROR(A1/B1, "Error") returns "Error" if the division results in an error, otherwise it
shows the result.

26. TRANSPOSE: Converts a vertical range of cells to a horizontal range or vice versa.

Example: =TRANSPOSE(A1:A3) changes the vertical range A1:A3 into a horizontal format.

27. INDEX: Returns the value of a cell in a specified row and column within a given range.

Example: =INDEX(A1:C3, 2, 3) returns the value in the second row and third column of the range
A1:C3.

28. MATCH: Returns the relative position of an item in an array that matches a specified value in a
specified order.

Example: =MATCH("Apple", A1:A5, 0) returns the position of "Apple" in the range A1:A5.

29. CONCAT: Joins two or more text strings together (similar to CONCATENATE).

Example: =CONCAT(A1, B1) combines the text in cells A1 and B1.

30. TEXT: Formats a number and converts it to text in a specified format.


Example: =TEXT(A1, "0.00") converts the number in A1 to text with two decimal places.

31. DATEDIF: Calculates the difference between two dates in years, months, or days.

Example: =DATEDIF(A1, B1, "Y") returns the number of complete years between dates in A1 and B1.

32. NETWORKDAYS: Returns the number of whole workdays between two dates, excluding weekends
and specified holidays.

Example: =NETWORKDAYS(A1, B1) calculates workdays between dates in A1 and B1.

33. RANDBETWEEN: Returns a random integer between the numbers you specify.

Example: =RANDBETWEEN(1, 100) returns a random number between 1 and 100.

34. ISNUMBER: Checks if a value is a number and returns TRUE or FALSE.

Example: =ISNUMBER(A1) returns TRUE if the value in A1 is a number.

35. ISBLANK: Checks if a cell is empty and returns TRUE or FALSE.

Example: =ISBLANK(B1) returns TRUE if B1 is empty.

36. FLOOR: Rounds a number down, toward zero, to the nearest multiple of significance.

Example: =FLOOR(A1, 5) rounds down the value in A1 to the nearest multiple of 5.

37. CEILING: Rounds a number up, away from zero, to the nearest multiple of significance.

Example: =CEILING(B1, 5) rounds up the value in B1 to the nearest multiple of 5.

38. SUBTOTAL: Returns a subtotal in a list or database.

Example: =SUBTOTAL(1, C1:C10) returns the average of the values in C1 to C10, where "1" specifies
the AVERAGE function.

39. CLEAN: Removes all nonprintable characters from text.


Example: =CLEAN(D1) removes nonprintable characters from the text in D1.

40. UNIQUE: Returns a list of unique values from a range or array.

Example: =UNIQUE(E1:E10) returns a list of unique values found in the range E1 to E10.

Introduction to MS Word
1. MS Word is a word processing software developed by Microsoft.
2. It is part of the Microsoft Office Suite.
3. MS Word is used for creating, editing, formatting, and printing documents.
4. A Word file is saved with a .doc or .docx extension.
5. It is widely used for creating reports, letters, resumes, and other text-based documents.

Basic Operations in MS Word

6. Starting MS Word: Open MS Word from the Start menu or desktop shortcut.
7. Creating a New Document: Use the "File" menu or "New" button to start a blank
document.
8. Opening an Existing Document: Use "File" > "Open" to access previously saved files.
9. Saving a Document: Save documents using "File" > "Save" or "Save As".
10. Renaming a Document: Use "Save As" to save the file with a new name.
11. Typing Text: Begin typing directly in the document area.
12. Selecting Text: Click and drag to select text for editing or formatting.
13. Deleting Text: Use the backspace or delete key to remove text.
14. Copying Text: Select text and use "Ctrl + C" to copy.
15. Pasting Text: Use "Ctrl + V" to paste copied content.
16. Cutting Text: Select text and use "Ctrl + X" to cut.
17. Undo and Redo: Use "Ctrl + Z" to undo and "Ctrl + Y" to redo actions.
18. Finding Text: Use "Ctrl + F" to search for specific text in the document.
19. Replacing Text: Use "Ctrl + H" to replace text with new content.

Text Formatting

20. Changing Font: Use the "Home" tab to select font style and size.
21. Bold, Italic, and Underline: Use "Ctrl + B", "Ctrl + I", and "Ctrl + U" for formatting.
22. Changing Text Color: Select a text color from the font color dropdown.
23. Highlighting Text: Use the highlighter tool to emphasize text.
24. Aligning Text: Align text to the left, center, right, or justify using alignment options.
25. Changing Line Spacing: Adjust spacing using the "Line and Paragraph Spacing" tool.
26. Applying Styles: Use pre-defined styles for headings and paragraphs.
27. Bullets and Numbering: Create lists with bullets or numbers.

Page Layout and Design

28. Setting Margins: Adjust page margins using the "Layout" tab.
29. Changing Page Orientation: Set the page as Portrait or Landscape.
30. Adding Page Borders: Insert borders to enhance the document design.
31. Inserting Headers and Footers: Add information at the top and bottom of pages.
32. Adding Page Numbers: Insert page numbers in the header or footer.
33. Using Watermarks: Add watermarks for branding or confidentiality.
34. Inserting Page Breaks: Use "Ctrl + Enter" to start a new page.

Working with Tables and Graphics

35. Inserting Tables: Use the "Insert" tab to add tables to the document.
36. Editing Tables: Add or remove rows and columns as needed.
37. Formatting Tables: Change table design and layout using Table Tools.
38. Inserting Images: Add images using "Insert" > "Pictures".
39. Adding Shapes: Use the "Insert" tab to draw shapes like rectangles or arrows.
40. Using SmartArt: Create diagrams and organizational charts.
41. Adding Charts: Insert bar graphs, pie charts, and more to present data.

Advanced Features

42. Inserting Hyperlinks: Link text or images to websites or other documents.


43. Using Mail Merge: Automate letters or labels using data sources.
44. Tracking Changes: Enable "Track Changes" for collaborative editing.
45. Adding Comments: Insert comments for feedback or notes.
46. Checking Spelling and Grammar: Use the spell checker to find and correct errors.
47. Protecting a Document: Add a password to restrict access or editing.
48. Using Templates: Start with pre-designed templates for letters, resumes, etc.
49. Printing Documents: Print documents via "File" > "Print".
50. Exporting as PDF: Save the document as a PDF using "File" > "Save As".

Introduction to PowerPoint
1. PowerPoint is a presentation software developed by Microsoft.
2. It is a part of the Microsoft Office Suite.
3. PowerPoint is used to create slideshows for educational, business, and personal
purposes.
4. A PowerPoint file is called a presentation and has a .ppt or .pptx file extension.
5. Slides are the building blocks of a PowerPoint presentation.

Basic Operations in PowerPoint

6. Starting PowerPoint: Open PowerPoint from the Start menu or desktop shortcut.
7. Creating a New Presentation: Use the "File" menu or click "New" to start a
presentation.
8. Using Templates: Choose from built-in templates for a professional look.
9. Inserting Slides: Add slides using the "New Slide" button on the ribbon.
10. Slide Layouts: Select different layouts like Title Slide, Content Slide, and Blank Slide.
11. Adding Text: Use text boxes to add text to slides.
12. Formatting Text: Change font size, color, and style using the Home tab.
13. Inserting Images: Add images using the "Insert" tab and "Pictures" option.
14. Adding Shapes: Insert shapes like circles, rectangles, and arrows.
15. Using SmartArt: Create diagrams using the SmartArt tool.
16. Adding Tables: Insert tables to display data in rows and columns.
17. Inserting Charts: Add pie charts, bar graphs, or line charts to present data visually.
18. Embedding Videos: Insert videos using the "Insert" tab and "Video" option.
19. Adding Audio: Embed audio files or record narration for slides.
20. Slide Backgrounds: Change the background color or use a background image.

Design and Formatting

21. Applying Themes: Use built-in themes to give your presentation a consistent design.
22. Using Slide Master: Customize the overall design for all slides using Slide Master.
23. Adding Animations: Apply animations to text and objects.
24. Adding Transitions: Use slide transitions for smooth navigation between slides.
25. Customizing Animations: Adjust animation duration and order.
26. Using Gridlines: Align objects using gridlines and guides.
27. Formatting Shapes: Change the color, border, and effects of shapes.
28. Adding Hyperlinks: Insert hyperlinks to other slides, websites, or documents.
29. Using WordArt: Add decorative text using WordArt styles.
30. Group and Align: Group multiple objects and align them properly.

Working with Slides

31. Duplicating Slides: Copy slides to reuse content.


32. Rearranging Slides: Drag and drop slides in the Slide Sorter view.
33. Hiding Slides: Temporarily hide slides during a presentation.
34. Using Notes: Add speaker notes for additional information.
35. Slide Views: Use Normal, Slide Sorter, and Reading views to work on slides.
36. Slide Show View: Present slides in full-screen mode.
37. Custom Slide Show: Create a custom slideshow for specific audiences.

Saving and Sharing

38. Saving Presentations: Save files as .pptx, .pdf, or other formats.


39. Exporting Slides: Export slides as images or PDF files.
40. Printing Slides: Print slides, notes, or handouts for distribution.
41. Sharing Files: Share presentations via email or cloud storage.

Advanced Features

42. Embedding Excel Data: Insert and link Excel data into slides.
43. Using Presenter View: Display notes and tools during a presentation.
44. Rehearsing Timings: Practice slide timings for an automatic presentation.
45. Recording Slide Show: Record the presentation with voiceover.
46. Collaborating on Slides: Use co-authoring for team collaboration.
47. Using Design Ideas: Get AI-powered design suggestions.
48. Custom Animations: Create complex animations using the Animation Pane.
49. Using Add-ins: Enhance PowerPoint functionality with add-ins.

Finalizing the Presentation


50. Checking Spelling: Use the spell checker to avoid errors.

You might also like