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

Charts - Make your data presentable

One-click charts are easy: Select the data and press  Alt+F1 . What if you would rather create bar charts instead of the default clustered column chart? To make your life easier, you can change the default chart type. Store your favorite chart settings in a template and then teach Excel to produce your favorite chart in response to  Alt+F1 . Say that you want to clean up the chart above. All of those zeros on the left axis take up a lot of space without adding value. Double-click those numbers and change Display Units from None to Millions. To move the legend to the top, click the + sign next to the chart, choose the arrow to the right of Legend, and choose Top. Change the color scheme to something that works with your company colors. Right-click the chart and choose Save As Template. Then, give the template a name. (I called mine ClusteredColumn.) Select a chart. In the Design tab of the Ribbon, choose Change Chart Type. Click on the Templates folder to see the template that ...

Data Analysis Tool Pack

  The  Analysis ToolPak  is an  Excel add-in  program that provides data analysis tools for financial, statistical and engineering data analysis. To load the Analysis ToolPak add-in, execute the following steps. 1. On the File tab, click Options. 2. Under Add-ins, select Analysis ToolPak and click on the Go button. 3. Check Analysis ToolPak and click on OK. 4. On the Data tab, in the Analysis group, you can now click on  Data Analysis . The following dialog box below appears. 5. For example, select Histogram and click OK to create a Histogram in Excel. Example Rank and Percentile The Rank and Percentile contained within the Analysis-ToolPak can be quickly used to find the rank of all the values in a list. The advantage of using the Rank and Percentile feature is that the percentile is also added to the output table. The percentile is a percentage that indicates the proportion of the list which is below a given number. Highlight the list (or the cells) which...

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 ...