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

20 Time Intelligence Dax Measures

20 Time Intelligence DAX measures in Power BI with examples: Year-to-Date Sales: css Copy code YTD Sales = TOTALYTD( [Total Sales] , Calendar [Date] ) Month-to-Date Sales: css Copy code MTD Sales = TOTALMTD( [Total Sales] , Calendar [Date] ) Quarter-to-Date Sales: css Copy code QTD Sales = TOTALQTD( [Total Sales] , Calendar [Date] ) Previous Year Sales: mathematica Copy code Previous Year Sales = CALCULATE ( [ Total Sales ] , SAMEPERIODLASTYEAR ( Calendar [ Date ] ) ) Year-over-Year Growth: css Copy code YoY Growth = DIVIDE( [Total Sales] - [Previous Year Sales] , [Previous Year Sales] ) Rolling 3-Month Average Sales: sql Copy code 3 M Rolling Avg Sales = AVERAGEX(DATESINPERIOD(Calendar[ Date ], MAX (Calendar[ Date ]), -3 , MONTH ), [Total Sales]) Cumulative Sales: scss Copy code Cumulative Sales = SUMX (FILTER(ALL(Calendar), Calendar [Date] <= MAX (Calendar[Date])), [Total Sales] ) Running Total Sales: scss Copy code Running Total Sales = SUMX (FILTER(ALL(Calendar), Calen...

40 Power Query Editor features in Power BI

40 Power Query Editor features in Power BI along with examples: 1. Filter Rows: Remove rows based on conditions. Example: Remove rows with a null value in the "CustomerName" column. 2. Remove Duplicates: Eliminate duplicate rows. Example: Remove duplicate entries based on the "OrderID" column. 3. Sort Rows: Arrange rows in ascending or descending order. Example: Sort data by "Date" column in descending order. 4. Replace Values: Substitute one value with another. Example: Replace "N/A" with "Unknown" in the "Status" column. 5. Split Columns: Divide a column into multiple columns. Example: Split "FullName" into "FirstName" and "LastName." 6. Merge Queries: Combine data from multiple sources. Example: Merge customer and order data based on the "CustomerID." 7. Group By: Aggregate data based on a specific column. Example: Group sales data by "ProductCategory" and calculate the sum ...