Skip to main content

Power Point - Slide Master a very important tool

 When you want all your slides to contain the same fonts and images (such as logos), you can make those changes in one place—the Slide Master, and they'll be applied to all your slides. To open Slide Master view, on the View tab, select Slide Master:

Use the View tab in PowerPoint to switch to Slide Master view

The master slide is the top slide in the thumbnail pane on the left side of the window. The related layout masters appear just below the slide master (as in this picture from PowerPoint for macOS):

Slide master and slide layouts

1 Slide master

2 Layout masters

When you edit the slide master, all slides that are based on that master will contain those changes. However, the majority of changes that you make will most likely be to the layout masters related to the master.

When you make changes to layout masters and the slide master in Slide Master view, other people working in your presentation (in Normal view) can’t accidentally delete or edit what you’ve done. Conversely, if you're working in Normal view and find that you're unable to edit an element on a slide (such as, "why can't I remove this picture?") it may be because the thing you're trying to change is defined on the slide master or a layout master. To edit that thing, you must switch to Slide Master view.

Note: It's a good idea to edit your slide master and layout masters before you start to create individual slides. That way, all the slides that you add to your presentation are based on your custom edits. If you edit the slide master or layout masters after you create individual slides, you’ll need to reapply the changed layouts to the existing slides in your presentation in Normal view.

Themes

A theme is a palette of colors, fonts, and special effects (like shadows, reflections, 3-D effects, and more) that complement one another. A skilled designer created each theme in PowerPoint. We make those pre-designed themes available to you on the Design tab in Normal view.

Every theme you use in your presentation includes a slide master and a related set of layouts. If you use more than one theme in your presentation, you’ll have more than one slide master and multiple sets of layouts.

PowerPoint themes

Slide Layouts

You change and manage slide layouts in Slide Master view. Every theme has a several slide layouts. You choose the layouts that best match your slide content; some are better for text and some are better for graphics.

In Normal view, you’ll apply the layouts to your slides (shown below).

PowerPoint slide layouts

Each slide layout is set up differently — with different types of placeholders in different locations on each layout.

Every slide master has a related slide layout called Title Slide Layout, and each theme arranges the text and other object placeholders for that layout differently, with different colors, fonts and effects. The following pictures contrast the title slide layouts for two themes: first the Basis theme and then the Integral theme.

Basis Title Slide Layout in PowerPoint
Integral Title Slide Layout in PowerPoint

You can change anything about a layout to suit your needs. When you change a layout master and then go to Normal view, every slide you add after that time that's based on that layout will reflect the changed look of the layout. However, if there are existing slides in your presentation that are based on the prior version of the layout, you’ll need to reapply the layout to those slides

Comments

Popular posts from this blog

Formatting In Excel - helps you find meaning in the spreadsheet

  Formatting In Excel -  helps you find meaning in the spreadsheet  Spreadsheets are often seen as boring and pure tools of utility, but that doesn't mean that we can't bring some style and formatting to our spreadsheets Formatting helps your user find meaning in the spreadsheet without going through each and every individual cell. Cells with formatting will draw the viewer's attention to the important cells. In Excel, formatting worksheet data is easy. You can use several fast and simple ways to create professional-looking worksheets that display your data effectively. For example, you can use document themes for a uniform look throughout all of your Excel spreadsheets, styles to apply predefined formats, and other manual formatting features to highlight important data. Formatting a Data Raw Data   Using Font, Number tabs as shown in image to do a simple formatting   Formatting a Data with help of formatting tools in Excel  As shown in image , we have Prod...

Protect Formula Cells

The use of worksheet protection in Excel is a little strange. Using the steps below, you can quickly protect just the formula cells in your worksheet. It seems unusual, but all 16 billion cells on a worksheet start out with their Locked property set to True. You need to unlock all of the cells first: Select all cells by using the icon above and to the left of cell A1. Press  Ctrl+1  (that is the number 1) to open the Format Cells dialog. In the Format Cells dialog, go to the Protection tab. Uncheck Locked. Click OK. While all cells are still selected, select Home, Find & Select, Formulas. At this point, only the formula cells are selected. Press  Ctrl+1  again to display the Format Cells dialog. On the Protection tab, choose Locked to lock all of the formula cells. Locking cells does nothing until you protect the worksheet. On the Review tab, choose Protect Sheet. In the Protect Sheet dialog, choose if you want people to be able to select your formula cells or no...

20 Power BI Dax Measures

Power bi 20 dax measures 20 DAX (Data Analysis Expressions) measures in Power BI with examples: Total Sales: scss Copy code Total Sales = SUM (Sales[Amount]) Average Sales Price: scss Copy code Avg Sales Price = AVERAGE (Sales[Amount]) Total Units Sold: mathematica Copy code Total Units Sold = SUM ( Sales [ Quantity ] ) Total Customers: scss Copy code Total Customers = COUNTROWS (Customer) Total Products: mathematica Copy code Total Products = COUNTROWS ( Product ) Maximum Sales Amount: scss Copy code Max Sales Amount = MAX (Sales[Amount]) Minimum Sales Amount: scss Copy code Min Sales Amount = MIN (Sales[Amount]) Sales Growth Percentage: mathematica Copy code Sales Growth % = ( Total Sales - [ Total Sales Last Year ] ) / [ Total Sales Last Year ] Total Profit: scss Copy code Total Profit = SUM (Sales[Profit]) Total Orders: scss Copy code Total Orders = COUNTROWS (Orders) Total Customers with Sales: css Copy code Total Customers with Sales = COUNTROWS( FILTER ...