sharepoint online open powerpoint in presentation mode

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

How to Embed/ Display a PPT on SharePoint Intranet Site

I am trying to embed a ppt viewer into our company's internal shared site where internal users can easily view my team's software documentation. The company is fairly large, so we are trying to make it look very professional for when other teams visit my team's page for software documentation. I saw on a completely unrelated website their document viewer and I want to display our documents in a similar type of box.

Below is a screen shot of the document viewer that I want it to look like (identifying information blocked out). The document viewer option that comes standard with the SharePoint does not have the side panel that offers a glance to the other pages like this one does. I see similar document viewers on other websites as well, so I know it can be done!

Goal Document View

My questions are: Is it possible to embed a similar style of view into my own SharePoint using the "document viewer" web part in the SharePoint or will I need to use some other method? Also, is there a name for the goal style of document viewer?

  • sharepoint-online
  • modern-experience

Ganesh Sanap - MVP's user avatar

You can use the File viewer web part in SharePoint online to display the files on page. But, there is no way to show the side panel using this web part.

Workaround :

As a workaround you can use the Embed web part in SharePoint.

You can use the iframe code like below to embed the PPT in view mode on your page.

enter image description here

You can adjust the width & height of the iframe as per your requirements.

You can get the PPT URL to put in src attribute of above code by following below steps:

Go to SharePoint document library where you have uploaded the PPT

Click on the PPT name & it will open the file in new browser tab

Copy the URL of file up to sourcedoc query parameter like below:

enter image description here

Append &action=view to the copied URL & add it to the src attribute.

Add embed web part on a page & paste the iframe code in it.

  • Thanks Ganesh! I converted my PPT to a PDF and used your method. It is so close to perfect! I re-posted this question but asking about PDFs in this thread: sharepoint.stackexchange.com/questions/293883/… –  Klaws Commented May 24, 2021 at 20:32
  • Please Upvote and accept it as an answer if it helped you in any way and I will look into your new question. –  Ganesh Sanap - MVP Commented May 25, 2021 at 3:21

Your Answer

Sign up or log in, post as a guest.

Required, but never shown

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy .

Not the answer you're looking for? Browse other questions tagged sharepoint-online web-part modern-experience document fileviewer or ask your own question .

  • The Overflow Blog
  • Scaling systems to manage all the metadata ABOUT the data
  • Navigating cities of code with Norris Numbers
  • Featured on Meta
  • We've made changes to our Terms of Service & Privacy Policy - July 2024
  • Bringing clarity to status tag usage on meta sites

Hot Network Questions

  • tmux - How to remove delay after pressing prefix key and Up key
  • Guitar amplifier placement for live band
  • can a CPU once removed retain information that poses a security concern?
  • Relation between specific heats for a magnetic system
  • Non-linear recurrence for rational sequences with generating function with radicals?
  • How do I find the password to my privaterelay.appleid.com
  • In "Take [action]. When you do, [effect]", is the action a cost or an instruction?
  • Who became an oligarch after the collapse of the USSR
  • Does Gimp do batch processing?
  • What is this houseplant with a red fleshy stem and thick waxy leaves?
  • Fisher claims Σ(x - λ)²/λ is chi-squared when x is Poisson – how is that?
  • What's wrong with my app authentication scheme?
  • Three 7-letter words, 21 unique letters, excludes either HM or QS
  • Cumulative Addition of Index Switch Node Values
  • How to cite a book if only its chapters have DOIs?
  • How would a culture living in an extremely vertical environment deal with dead bodies?
  • How predictable are the voting records of members of the US legislative branch?
  • Is there a French noun equivalent for "twofer"?
  • Terminal autocomplete (tab) not completing when changing directory up one level (cd ../)
  • Why did evolution fail to protect humans against sun?
  • Word to classify what powers a god is associated with?
  • Repeats: Simpler at the cost of more redundant?
  • Power line crossing data lines via the ground plane
  • Are there jurisdictions where an uninvolved party can appeal a court decision?

sharepoint online open powerpoint in presentation mode

SharePoint Diary Logo

SharePoint Diary

Salaudeen Rajack's SharePoint Experiences!

how to open powerpoint in presentation mode from sharepoint

how to open powerpoint in presentation mode from sharepoint

SharePoint Online: How to Open PowerPoint in Presentation Mode?

Requirement: Open PowerPoint files in slideshow mode in SharePoint Online. How to Open PowerPoint in Presentation mode from SharePoint Online? Any link to PowerPoint presentations (PPT, PPTX, or PPSX files) takes users to the Edit mode of the file. Even if the users don’t have permission to edit, SharePoint opens it in…

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Automatically open Powerpoint in presenter mode, on correct screens

We have a laptop that we only use to present an induction course which is just a powerpoint presentation.

We have a second screen hooked up and when the presentation opens up someone has to navigate to and hit the start presentation button, at that point and it opens in presenter view with the notes on the laptop and the presentation on the second screen.

What I'd like to be able to do is avoid that on element of interaction.

Is it possible to launch a power point directly into presentation mode with no additional user interaction?

  • microsoft-powerpoint

Patrick's user avatar

3 Answers 3

Save the file in PowerPoint Show (*.ppsx) format . It will open automatically in presentation mode.

From Microsoft's site :

PowerPoint Show .ppsx A presentation that always opens in Slide Show view rather than in Normal view. Tip: To open this file format in Normal view so that you can edit the presentation, open PowerPoint. On the File menu, click Open, and then choose the file.

Note: If you need macros enabled save as a .ppsm. If you're in PowerPoint 2003 the older format you need is .pps.

Community's user avatar

  • it opens the presentation on screen 2 correctly but you don't get the presenters view on screen 1. Can't see an option for configuring it... –  Patrick Commented Jul 7, 2017 at 14:59
  • 1 Hmmm. Seems you're right, there's no way to force visibility of the Presenter View in .ppsx files. That's annoying, and weird. So, my next method would be to save as a .pptm (macro-enabled .pptx) and use VBA to launch the slideshow, which would bring up Presenter View. But irritatingly, PowerPoint doesn't allow you to execute macros on open - so we need another workaround. You could download an auto_open PowerPoint add-in to give this functionality, or you could use something like a macro-enabled Excel file to call the .pptx on open. Bit painful but it can be done. –  Andi Mohr Commented Jul 7, 2017 at 15:51
  • Frustrating, so close and yet so far. I think I'll just leave an instruction on screen 'open powerpoint, click these two buttons' and be done with it. There is only so much you can automate away :) Thanks for you help. –  Patrick Commented Jul 10, 2017 at 8:38

I achieved this by the following

I Added a macro to the Powerpoint presentation

Then start the powerpoint presentation from the command line with

I used a 2003 presentation in 2016 - so the extension for presentations containing macros is ppt not pptm.

The remaining issue I have is that when I close the presentation it prompts to save - it does not do this if I load and run it using the GUI.

Ross's user avatar

I think I'm a bit late, but this might be helpful to others.

The best way I could find to start in presenter mode is by pressing Alt F5 . It will start from the first slide, though. If you want to start from the current slide, you might need to use the sequence Alt S C . But it doesn't work if you press each individually, they have to be pressed at the same time. Also, this second metho does a weird error sound and I couldn't figure out why.

Anyway, if you are ok about starting on the first slide, Alt S will do just fine.

Source: https://support.office.com/en-ie/article/use-keyboard-shortcuts-to-deliver-powerpoint-presentations-1524ffce-bd2a-45f4-9a7f-f18b992b93a0

Guilherme's user avatar

  • (1) The question says “with no additional user interaction”. It sounds like you’re just offering a different form of user interaction. (2) Or rather, three different forms. What’s the relationship between Alt+F5 and Alt+S? –  Scott - Слава Україні Commented Jun 27, 2019 at 23:38

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged microsoft-powerpoint ..

  • The Overflow Blog
  • Scaling systems to manage all the metadata ABOUT the data
  • Navigating cities of code with Norris Numbers
  • Featured on Meta
  • We've made changes to our Terms of Service & Privacy Policy - July 2024
  • Bringing clarity to status tag usage on meta sites

Hot Network Questions

  • "Heads cut off" or "souls cut off" in Rev 20:4?
  • Which direction is the rolling shutter on a Canon 5D?
  • Does Gimp do batch processing?
  • How can I cross an overpass in "Street View" without being dropped to the roadway below?
  • With 42 supernovae in 37 galaxies, how do we know SH0ES results is robust?
  • Repeats: Simpler at the cost of more redundant?
  • Is there a French noun equivalent for "twofer"?
  • Questions about best way to raise the handlebar on my bike
  • Cumulative Addition of Index Switch Node Values
  • How do I find the password to my privaterelay.appleid.com
  • A more general product rule for weak derivatives?
  • Is the Ted-Ed Leprechaun's Magic Bag Unique?
  • Smallest natural number unrepresentable by fifty letters
  • Do "Whenever X becomes the target of a spell" abilities get triggered by counterspell?
  • Including standalone tikz in beamer
  • How do you "stealth" a relativistic superweapon?
  • Age is just a number!
  • What's wrong with my app authentication scheme?
  • Why did evolution fail to protect humans against sun?
  • Splitting an infinite sum in two parts results in a different result
  • Terminal autocomplete (tab) not completing when changing directory up one level (cd ../)
  • How to prevent erasing buffer content when an external program used in filter fails?
  • If there is no free will, doesn't that provide a framework for an ethical model?
  • Cover letter format in Germany

sharepoint online open powerpoint in presentation mode

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

PowerPoint for the web

  • 11 contributors

PowerPoint for the web (formerly PowerPoint Web App) extends your Microsoft PowerPoint experience to the web browser, where you can work with presentations directly on the website where the presentation is stored. Microsoft 365 customers with Microsoft 365 for the web can view, create, and edit files on the go.

The PowerPoint Editor is a web front-end component that creates a browser-based editing surface, which lets users work on documents without losing fidelity.

If you select the Open in PowerPoint button on the PowerPoint for the web toolbar, the presentation opens in the PowerPoint desktop app (if Microsoft PowerPoint 2010 or later is installed on the computer).

Learn how to download and install Office using Microsoft 365 for business on a PC .

Alignment, bullets, numbers

With PowerPoint for the web, you can change paragraph alignment, apply bullets or numbering, and change the level of bulleted or numbered text. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Apply basic transitions and animations

Choose from a gallery of animation and transition effects. PowerPoint for the web supports eight transitions and 37 animations. Additional animations and transitions not supported by PowerPoint for the web are preserved in the presentation and displayed in the slide show, but they can't be modified in PowerPoint for the web. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Apply rich formatting to text, shapes, and pictures

Not available in PowerPoint for the web. Advanced formatting features, such as more colors, gradients, eyedropper, effects, and styles, are available in the PowerPoint desktop app. With PowerPoint for the web, you can add a text box or choose from a gallery of shapes and apply styles, which define fill, outline, and shadow effects.

Apply themes and theme variants

Choose from a gallery of built-in themes and variants when you add a new slide to the presentation. Themes not supported by PowerPoint for the web are preserved in the presentation, but the ability to modify themes is not available in PowerPoint for the web. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Office add-ins

PowerPoint for the web only supports content add-ins for Office. Content add-ins integrate web-based features as content that can be shown in line with a presentation. Learn more about types of add-ins for Office .

Arrange objects

Move, resize, rotate, or order shapes and text boxes in layers, back-to-front in PowerPoint for the web. Ungroup shapes to work with them individually. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Broadcast slide show

The PowerPoint desktop app is required to broadcast a slide show to a remote audience through PowerPoint for the web. Viewers can watch lives presentations through PowerPoint for the web, regardless of whether they have the PowerPoint desktop app installed. Learn more about broadcast slide show .

With PowerPoint for the web, you can cut, copy, and paste content in a presentation. A user can copy and paste text between Microsoft 365 for the web programs, as well as between Microsoft 365 for the web and the Microsoft Office desktop apps on the computer. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Create and manage slides

Add, reorder, duplicate, hide, and delete slides in PowerPoint for the web. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Create custom animation

PowerPoint for the web includes a gallery of animation effects. Animations not supported by PowerPoint for the web are preserved in the presentation and displayed in the slide show, but they can't be modified in PowerPoint for the web. To create custom animations, you'll need the PowerPoint desktop app installed on your computer. Learn more about creating custom animations with PowerPoint 2013 desktop app .

Design tools, advanced

Not available in PowerPoint for the web. Advanced design features, such creating slide masters and modifying layouts, are only available in the PowerPoint desktop app. With PowerPoint for the web, you can use your own template file as the basis for creating new files or choose from a predefined list of themes.

Dropbox is a file hosting service that offers cloud storage, file synchronization, personal cloud, and client software.

Embed presentation on web or blog page

With PowerPoint for the web, you can embed presentations on websites or blogs so that anyone can view your information even if they don't have the Microsoft PowerPoint desktop app. Embedded viewers show animations, transitions, and audio/video—the same as full fidelity reading view. Learn more about embedding presentations on a web or blog page .

Font downloading and formatting

The font service is a CDN based solution to ensure Office applications are able to render documents and presentations in full fidelity by downloading the required fonts to the local machine.

When sharing PowerPoint presentations with recipients via PowerPoint for the web, only use the fonts detailed in the cloud fonts list here . Why? These fonts are available in the cloud and are downloaded as needed and installed on our servers. Other fonts, including locally installed fonts not on this list and embedded fonts, will not be installed on our servers and will be replaced with fallback fonts, resulting in content reflow and formatting issues.

PowerPoint for the web lets you apply bold, italics, underline, font, size, and color to text. You can also use the Format Painter to copy the format of entire shapes.

To use your organization’s custom font on PowerPoint for the web, upload your font as an Organization Asset Library .

Full fidelity reading view

View presentations as they were intended to be seen—showing animations, transitions, and audio/video.

Full ink support

Ink can't be inserted in PowerPoint for the web, but PowerPoint for the web displays them as expected.

Full selection of animations and transitions

PowerPoint for the web supports eight transitions and 37 animations. For a larger selection, use the PowerPoint desktop app.

Headers and footers

Headers and footers, including date and slide numbers, can't be inserted, edited, or deleted in PowerPoint for the web, but PowerPoint for the web displays them as expected. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Insert, edit, and follow hyperlinks. Bookmark links work, but can't be edited in PowerPoint for the web.

Insert online video

Video and audio content plays in Reading view and Slide Show, with a file size limit of 100 MB. Online video can be inserted from YouTube, and media controls can be resized, moved, and deleted in PowerPoint for the web. But to insert audio and video other than YouTube, you need the Microsoft PowerPoint desktop app.

Integration with Excel for charts

Not available in PowerPoint for the web. With PowerPoint for the web, you can view Excel charts in an existing presentation, but you can't edit or insert an Excel chart in a presentation using PowerPoint for the web. Learn more about copying an Excel chart to PowerPoint .

Navigation - slide sorter

Slide sorter view, which gives you a view of your slides in thumbnail form, makes it easy to sort and organize your slides. You can use slide sorter view to organize your slides, add sections, and sort slides into different categories.

Offline viewing and authoring

PowerPoint for the web is launched from a web browser and relies on an internet connection. To access presentations offline, Microsoft PowerPoint desktop app must be installed on your computer and used to view and edit slides.

Picture cropping

Improve the framing of a subject in a picture with the cropping tool. Simply click one of the cropping handles at the edge of the picture and drag it until you achieve the picture you want.

With PowerPoint for the web, you can insert pictures stored on your computer, or insert pictures from Bing Images. You can move, resize, and crop pictures, and apply a number of picture styles. More sophisticated features for working with pictures, such as applying effects, are not available in PowerPoint for the web. You can't create screenshots in PowerPoint for the web, but screenshots that are in a presentation display as pictures in PowerPoint for the web. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Present online through Skype for Business or the Office Presentation Service

Not available in PowerPoint for the web. Microsoft PowerPoint desktop app lets you deliver your presentations using the Office Presentation Service, a free, public service that allows others to follow along in their web browser. Learn more about Office Presentation Service .

Presenter view

Not available in PowerPoint for the web. Only Microsoft PowerPoint desktop app allows a presenter a behind-the-scene control of the presentation flow, notes, annotations, and zooming tools. PowerPoint for the web does not support these features.

Print to PDF

With PowerPoint for the web, you can print your presentation to a PDF reader, where all the layout and formatting of your slides will print the way you expect. Learn more about basic tasks you can do using PowerPoint for the web .

Proofing tools

You can check spelling and set the proofing language, using the built-in dictionary with PowerPoint for the web. But PowerPoint for the web does not use a custom dictionary and does not include translation or a thesaurus.

Real-time co-authoring

Multiple authors can work simultaneously in PowerPoint for the web and PowerPoint 2016. Real-time presence helps you see where your co-authors are working in the presentation so that you don't create conflicts as you edit, and you can see changes as they're being made. PowerPoint 2013 supports simultaneous editing, but there is no presence indication, and changes can't be seen by multiple authors until the document is saved. For more information about real-time co-authoring in PowerPoint, see Work together on PowerPoint presentations .

Reviewer tools, advanced

Not available in PowerPoint for the web. Advanced reviewer features, such as merge conflicts and compare presentations, are only available in the PowerPoint desktop app. With PowerPoint for the web, you can view, add, edit, or delete comments.

Rights management: Apply and consume IRM and password protection

Not available in PowerPoint for the web. PowerPoint for the web displays presentations that are protected with Information Rights Management (IRM). However, these presentations can't be edited in the browser, and you can't create IRM-protected presentations in PowerPoint for the web. PowerPoint for the web can't open presentations that are digitally signed or encrypted with a password.

Run slide show

With PowerPoint for the web, you can run your presentation with just a web browser and an internet connection. Learn more about basic tasks you can do using PowerPoint for the web .

Save as or Download a copy

PowerPoint for the web saves your work every time you make a change. There is no Save command. You can download a copy, but you must have the Microsoft PowerPoint desktop app to edit a local copy.

Word Art and charts can't be inserted in PowerPoint for the web, but PowerPoint for the web displays them as expected. In Editing view, edit and format text. If you want to apply text effects to Word Art, you'll need the Microsoft PowerPoint desktop app.

If your presentation is saved in a SharePoint document library, then your presentation is online and you can share it by sending a link instead of an email attachment. People with proper permissions can view it in their web browser or mobile device. Learn more about sharing a presentation .

PowerPoint for the web plays slide shows in a full-screen window. Press the spacebar to advance the slides. Slide animations play, but only Fade and Wipe transitions between slides are supported. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

You can insert SmartArt, switch to a different layout or color scheme, apply SmartArt styles, and edit text with PowerPoint for the web. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

Table creation, editing, and formatting

Tables can be created and edited in PowerPoint for the web, and PowerPoint for the web supports most table functions. For advanced functions, such as merging and splitting cells, use the PowerPoint desktop app. Learn more about the differences between using a presentation in the browser versus the PowerPoint desktop app .

When you need to accomplish something in PowerPoint for the web but don't know how, you can use the Tell Me search feature to quickly find what you're looking for. Tell Me understands what you're trying to accomplish and helps you do it faster by making suggestions.

Undo and redo

Undo (Ctrl + Z) and redo (Ctrl + Y) an infinite number of recent actions during the current editing session in the active presentation. If the editing session times out or if you switch to Reading View for more than 30 seconds, the undo history is reset. Learn more about keyboard shortcuts in PowerPoint for the web .

View and add comments

If your files are stored on SharePoint Online or OneDrive for Business, you can add, edit, or delete comments.

If your files are stored on OneDrive, you can add, edit, or delete comments while in Editing View, and you can view and update comments while in Reading View.

View and edit slide notes

With PowerPoint for the web, notes for each slide can be displayed or hidden. You can also add notes in Edit mode.

WYSIWYG viewing

Edit your presentation in a form closely resembling its appearance when printed or displayed as a finished product.

Feature availability

To view feature availability across plans, standalone options, and on-premises solutions, see Microsoft 365 for the web service description .

Was this page helpful?

Coming soon: Throughout 2024 we will be phasing out GitHub Issues as the feedback mechanism for content and replacing it with a new feedback system. For more information see: https://aka.ms/ContentUserFeedback .

Submit and view feedback for

Additional resources

sharepoint online open powerpoint in presentation mode

How certain features behave in web-based PowerPoint

Using PowerPoint in a web browser lets you create and share create and share basic presentations. You can work simultaneously with others and present your slide show from anywhere. But web-based PowerPoint doesn't include all the features that desktop PowerPoint does. This article describes what you can and can't do in web-based PowerPoint.

There are two versions of web-based PowerPoint:

The majority of people, including anyone not using web-based Office in a business or school setting , have PowerPoint for the web . Read on for information about how its features behave.

Some of our business and school customers instead use PowerPoint Web App, which is included with SharePoint Server 2010 or SharePoint Server 2013. If you're using these Office Web Apps, switch to the PowerPoint Web App tab of this article (just below this introduction) to read about how its features behave.

File types and formats supported in PowerPoint for the web

Supported for viewing and editing

Supported only for viewing

Cannot be opened

PowerPoint Presentation (.pptx)

PowerPoint Template (.potx)

PowerPoint Add-in (.ppam)

PowerPoint Show (.ppsx)

PowerPoint 97-2003 Template (.pot)

Rich Text Format (RTF)

OpenDocument Presentation (.odp)

PowerPoint 97-2003 .ppt and .pps

Portable Document Format (PDF)

Password files

PowerPoint Macro-Enabled .pptm, .potm, and .ppsm

PowerPoint 97-2003 Add-in (.ppa)

Files marked as final

IRM files

Files with digital signatures

** PowerPoint for the web displays presentations in the .ppt and .pps formats, but to edit the presentation in the browser, it saves a new copy of the presentation in .pptx format.

*** The presentation can be opened, but macros do not run.

Opening and saving

Desktop feature

In PowerPoint for the web

Open

PowerPoint for the web can open files up to 2 gigabytes (GB) in size.

PowerPoint for the web can open .pptx, .ppsx, and .odp files.

You can view .ppt and .pps files in PowerPoint for the web, but it converts them to the newer format (.pptx/.ppsx) if you want to edit them.

You can view template files (.pot, .potx) in PowerPoint for the web, but you can't edit them. 

Macro-enabled PowerPoint files (.pptm, .potm, .ppam, .potx, .ppsm) can be viewed, but can't be edited. 

Add-in files (.ppa, .ppam) can't be opened in PowerPoint for the web.

Save

PowerPoint for the web saves your work automatically each time you make a change, so there’s no need for a button. However, you can use > to as a .pptx, .pdf, .odp file or as a series of JPEG images (one image per slide).

Password protection

Presentations that were protected with a password, digitally signed, or protected with Information Rights Management in desktop PowerPoint can be opened only in the desktop program. To control who can open your presentation, use the Sharing settings in OneDrive or SharePoint library.

Viewing and printing

Desktop feature

In PowerPoint for the web

Print

In PowerPoint for the web, you can print one slide per page, with headers and footers. (For details, see ) and you can print notes pages, or handouts. To get more printing layout options click , and print in the PowerPoint desktop application.

Normal View

Use Editing View to create your slides.

Outline, Master, and Slide Sorter Views

Outline and Master views are only available in desktop PowerPoint. Slide Sorter view is now available in PowerPoint for the web.

Reading View

You can flip through slides and show or hide speaker notes.

Presenter View

You need desktop PowerPoint to use Presenter View. Of course, you can still .

Slide Show View

You can run your slide shows in a full-screen window. Click each slide or press the spacebar to go to the next slide. Right-click a slide to go back, go to a specific slide, or end the show.

Video and audio

You can play video and audio in Reading View and Slide Show if you have Silverlight installed. You’ll need Flash for videos that are linked from a website. Keep an eye on the file size, because PowerPoint for the web won’t insert large media files. For embedded media, the size limit can be from 50-100MB, and for WAV files the limit is 100KB.

Speaker notes

You can show, print, or hide Speaker Notes.

Zoom

Go to > to select a size you'd like to zoom to. 

Rulers and gridlines

Rulers and gridlines are only available in desktop PowerPoint, but PowerPoint for the web has smart guides that automatically appear to help you align objects.

Editing and formatting

Desktop feature

In PowerPoint for the web

Create, delete, reorder, or hide slides

You can add, reorder, hide, and delete slides. You can choose a slide layout when you create a new slide, or change the slide layout after the slide is created.

Copy and Paste

Text pasted in PowerPoint for the web keeps the formatting from where you copied it. You can reformat the text after pasting it into the destination presentation. You can copy and paste pictures from one slide to another in the same presentation and also copy and paste from other presentations or applications. .

Font size and formatting

You can apply bold, italic, underline, font size, and color, including using Format Painter.

Paragraph formatting

You can align paragraphs left, right, or center; run text right-to-left or left-to-right; increase or decrease indentation; format paragraphs as a bulleted or numbered list.

Format background

You can of one or more slides with color or a picture.

Numbering and bullets

You can apply built-in numbering or bullet formats.

Find and Replace

The Find command is available on the Home tab of the Ribbon. The Replace command is not available in PowerPoint for the web.

Themes

You can choose from a limited gallery of built-in themes when you add a new slide to your presentation. Themes added to a presentation from desktop PowerPoint are preserved in PowerPoint for the web.

Animation effects

You can create many types animation effects in PowerPoint for the web. Animations added using desktop PowerPoint (that are not available in PowerPoint for the web) are preserved and will play in the slide show, but you can’t modify them there.

Transitions

You can choose from a limited gallery of transitions in PowerPoint for the web. Transitions added in desktop PowerPoint are preserved, but can only be played or changed in desktop PowerPoint.

Customize or broadcast slide show

Options for setting up and customizing the slide show, broadcasting the slide show, or setting up monitors aren't available in PowerPoint for the web.

Co-authoring

Multiple authors can work simultaneously in PowerPoint for the web. Co-authoring works with PowerPoint 2010 or later and PowerPoint for Mac 2016 or later.

Red squiggle underline appears under misspelled words. A right-click menu offers spelling suggestions to choose from.

Inserting things

Desktop feature

In PowerPoint for the web

Hyperlinks

You can insert, edit, and follow text hyperlinks. You can’t add a hyperlink to a picture or shape. Bookmark links work but you can’t edit them in PowerPoint for the web. See .

Tables

You can insert and edit tables in PowerPoint for the web.

Video and audio

Video and audio content play in Reading View and Slide Show View. You can resize, move, and delete video and audio controls in PowerPoint for the web. You can insert online videos. However, to insert video or audio from your PC, you’ll need to use desktop PowerPoint.

Pictures

Insert pictures or icons from your computer or the web. You can move, resize, and crop pictures, and you can apply picture styles. More sophisticated picture formatting features, such as applying special effects and removing the background are not available in PowerPoint for the web. To capture screen shots, you can use desktop PowerPoint.

Shapes, drawings, or text boxes

Add a text box or choose from a gallery of shapes. Apply styles, which define fill, outline, and shadow effects. Move, resize, rotate, or order shapes and text boxes in layers, back-to-front. Ungroup shapes to work with them individually.

SmartArt graphics

Insert a SmartArt graphic, switch to a different layout or color scheme, apply Smart Art styles, and edit text.

Charts and equations

You can’t insert these in PowerPoint for the web, but if you insert them using desktop PowerPoint, PowerPoint for the web displays them as expected.

WordArt

Not available in PowerPoint for the web. If you want to apply WordArt effects to text, tap or click

Symbols

A limited set of symbols can be inserted in PowerPoint for the web. If the font for displaying a symbol is not available, the symbol is displayed as a placeholder.

Headers and footers

Footers, including date and slide numbers, can be inserted, edited, or deleted in PowerPoint for the web. See .

   You can add a text box to act as a header.

Macros

You can view, edit, print, and share presentations that contain macros, but to run the macros, tap or click .

ActiveX controls, embedded OLE objects

You can’t insert or edit these in PowerPoint for the web, but they are displayed as expected.

Linked pictures

These are preserved in the presentation but are hidden in Reading View and Slide Show View. They display as placeholders in Editing View.

This feature

In PowerPoint for the web

Proofing tools

You can and you can set the proofing language.

Comments

You can view and edit comments. See .

File formats supported in PowerPoint Web App

PowerPoint Web App opens presentations in these formats:

PowerPoint Presentation (.pptx)

PowerPoint Template (.potx)

PowerPoint Show (.ppsx)

PowerPoint Macro-Enabled Presentation (.pptm), PowerPoint Macro-Enabled Template (.potm), or PowerPoint Macro-Enabled Show (.ppsm). The presentation can be opened, but macros do not run. These presentations cannot be edited in the browser.

PowerPoint 97-2003 Presentation (.ppt) or PowerPoint 97-2003 Show (.pps) PowerPoint Web App displays presentations in these formats, but to edit the presentation in the browser, PowerPoint Web App saves a new copy of the presentation in .pptx format. PowerPoint Web App can’t save presentations in the .ppt or pps formats.

PowerPoint 97-2003 Template (.pot), PowerPoint Web App displays presentations in this format, but they cannot be edited in the browser.

OpenDocument Presentation (.odp) This format is supported for presentations stored in a SharePoint library.

PowerPoint Web App can’t open presentations in other file formats. For example, these formats are not supported: Open Document Format (ODF), PowerPoint Add-in (.ppam), PowerPoint 97-2003 Add-in (.ppa), Rich Text Format (RTF), and Portable Document Format (PDF).

Features supported for viewing and printing

When you view a presentation in PowerPoint Web App, you can advance through the slides or play the slide show in the browser.

If you want PowerPoint features for printing (such as printing handouts) or you are using PowerPoint Web App in SharePoint, click Open in PowerPoint , and print in the PowerPoint desktop application.

When you are viewing a presentation, some features work differently in the browser than they do in the PowerPoint desktop application. To use features that are not available in PowerPoint Web App, click Open in PowerPoint .

This feature

Works like this in PowerPoint Web App

Normal, Notes Page, Reading View, and Master views

Reading view provides a way to advance through the slides, to jump to a particular slide, and to display or hide slide notes. Editing view in PowerPoint Web App is similar to Normal view in the PowerPoint desktop application. Notes Page, and Master views are not available in PowerPoint Web App.

Slide Show

PowerPoint Web App plays slide shows in a full-screen window. Press the spacebar to advance the slides. Slide animations play, but transitions from one slide to the next play as fades.

Video and audio

Video and audio content does not play in PowerPoint Web App, but it is preserved in the file.

Outline View

Outline View is available on the tab in Reading view.

View slide notes

Notes for each slide can be displayed or hidden.

Zoom

Zoom is not available in PowerPoint Web App. Using your browser’s zoom enlarges text of the PowerPoint Web App user interface, but slide content is not enlarged.

Rulers and gridlines

PowerPoint Web App does not display rulers and gridlines.

Features that differ between the browser and the desktop

When you edit a presentation, some features work differently in the browser than they do in the PowerPoint desktop application. The following tables describe how PowerPoint Web App supports features that might apply to your presentations. To use features beyond what’s available in PowerPoint Web App, click Open in PowerPoint .

This feature

Works like this in PowerPoint Web App

Open

The maximum file size that PowerPoint Web App can open is 300 MB.

File protection: IRM, digital signature, or password

PowerPoint Web App can’t open presentations that are encrypted with a password, digitally signed, or protected with Information Rights Management. Open these presentations in the PowerPoint desktop application.

Save

PowerPoint Web App saves your work every time you make a change. There is no command.

Top of Page

This feature

Works like this in PowerPoint Web App

Create, delete, reorder, hide slides

Add, reorder, duplicate, hide, and delete slides. Choose a layout when you create a new slide.

Copy and Paste

Copy and paste text. Text pasted in PowerPoint Web App keeps the formatting of where it was copied. You might need to format the text after pasting it, to match formatting of surrounding text.

Font formatting

Apply bold, italics, underline, font, size, and color. Note: the Format Painter command is not available in PowerPoint Web App.

Paragraph formatting

Align paragraphs left, right, or centered; run text right-to-left or left-to-right; increase or decrease indentation; format paragraphs as a bulleted or numbered list.

Numbering and bullets

Apply built-in numbering or bullet formats.

Find

Find and Replace are not available in PowerPoint Web App.

Theme

Theme is preserved in the presentation but can’t be edited in PowerPoint Web App.

Slide masters and slide layouts

Slides in PowerPoint Web App are based on the slide master and layouts that were used to create the slide in the PowerPoint desktop application. For presentations created in PowerPoint Web App, slide masters and layouts are based on default settings. Choose among a gallery of slide layouts when you add a slide to a presentation, but you cannot change slide masters or modify layouts in PowerPoint Web App.

Animations and transitions

These are preserved in the presentation but can’t be added or changed in PowerPoint Web App.

Slide show

Options for setting up and customizing the slide show, broadcasting the slide show, or setting up monitors are not available in PowerPoint Web App.

Co-authoring

Multiple authors can work simultaneously in PowerPoint 2010 for presentations stored in a SharePoint library. Co-authoring is not available in PowerPoint Web App.

Comments

Comments are hidden in PowerPoint Web App, but they are preserved in the presentation. Comments can’t be added in PowerPoint Web App.

This feature

Works like this in PowerPoint Web App

Hyperlinks

Insert, edit, and follow hyperlinks. Bookmark links work, but cannot be edited in PowerPoint Web App.

Tables

Tables are displayed but cannot be edited (other than to delete them) in PowerPoint Web App.

Pictures and clip art

Insert pictures stored on your computer, or insert clip art available on Office.com. You can apply a number of picture styles, but pictures and clip art cannot be moved or resized. More sophisticated features for working with pictures, such as applying effects and cropping, are not available in PowerPoint Web App. You can’t create screenshots in PowerPoint Web App, but screenshots that are in a presentation display as pictures in PowerPoint Web App.

In SharePoint, the ability to insert clip art is available only if it has been switched on by the SharePoint administrator.

Video and audio

These are preserved in the presentation, but cannot be added in PowerPoint Web App. They are displayed as placeholders.

Shapes, charts, equations, and ink

These can’t be inserted in PowerPoint Web App, but PowerPoint Web App displays them as expected. In Editing view they appear as pictures that cannot be edited.

SmartArt

Insert SmartArt, switch to a different layout or color scheme, apply Smart Art styles, and edit text.

Text boxes and WordArt

These can’t be inserted in PowerPoint Web App, but PowerPoint Web App displays them as expected. In Editing view, edit and format text. If you want to apply text effects to WordArt, click .

Symbols

These can’t be inserted or edited in PowerPoint Web App. If the font for displaying a symbol is not available, the symbol is displayed as a placeholder.

Headers and footers

Headers and footers, including date and slide numbers, cannot be inserted, edited, or deleted in PowerPoint Web App, but PowerPoint Web App displays them as expected.

Macros

You can view, edit, print, and share presentations that contain macros, but to run the macros click .

ActiveX controls, embedded OLE objects

These can’t be inserted or edited in PowerPoint Web App, but PowerPoint Web App displays them as expected.

Linked pictures

These are preserved in the presentation but are hidden in Reading view and Slide Show. They are displayed as placeholders in Editing view.

Facebook

Need more help?

Want more options.

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

sharepoint online open powerpoint in presentation mode

Microsoft 365 subscription benefits

sharepoint online open powerpoint in presentation mode

Microsoft 365 training

sharepoint online open powerpoint in presentation mode

Microsoft security

sharepoint online open powerpoint in presentation mode

Accessibility center

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

sharepoint online open powerpoint in presentation mode

Ask the Microsoft Community

sharepoint online open powerpoint in presentation mode

Microsoft Tech Community

sharepoint online open powerpoint in presentation mode

Windows Insiders

Microsoft 365 Insiders

Was this information helpful?

Thank you for your feedback.

Enjoy SharePoint

How to embed PowerPoint Slide in SharePoint

This SharePoint tutorial explains, how to embed a PowerPoint slide to SharePoint 2019 and to SharePoint Online. In the same way, also we can embed PowerPoint slide in SharePoint 2013/2016/2019. You will learn, how to embed PowerPoint in sharepoint .

Here we will embed the PowerPoint slide in both SharePoint classic page and modern pages.

Table of Contents

Embed PowerPoint in SharePoint

Let us see step by step, how to embed PowerPoint in sharepoint .

Step 1: Create a PowerPoint in your local computer or Office online.

Step 2: Create a document library in SharePoint .

Step 3: Upload that PPT file inside this document library.

embed powerpoint slide in sharepoint

Step 4 : Next open the PPT file and go to the share option to generate the Embed code. Please look into the screenshot below.

embed a powerpoint in sharepoint

Step 5: Copy the embed code and paste it inside in your SharePoint page. You can also set the dimensions of the slide.

how to import powerpoint slides into sharepoint

Step 6: Create a SharePoint classic page and Edit the page and click on Embed on top of the page. Next paste the same embed code.

how to embed powerpoint in sharepoint

You can also copy the code from here.

Step 7: Once you click on Insert and save the page, the slide will be appear in your SharePoint page.

how to upload a powerpoint to sharepoint

Embed PowerPoint presentation in SharePoint Online modern site

Step 8: We can also use the same embed code in SharePoint modern experience.

sharepoint embed powerpoint

Step 9: Click on the Embed, Next copy and paste the same code. next slide will appear in your modern page in SharePoint.

embed powerpoint in sharepoint

We can also integrate the same embed code inside a list in the modern view in SharePoint.

I hope this SharePoint tutorial explains, how to embed PowerPoint presentations in SharePoint online /2013/2016/2019. We can embed PowerPoint slides in SharePoint classic and modern pages. I hope now you got an idea on embed PowerPoint in sharepoint.

You may like the following SharePoint tutorials:

  • How to embed Power bi report in PowerApps portal
  • How to work with Power Apps Barcode Reader Control
  • HTML text control in Power Apps

Rajkiran Swain

Rajkiran is currently working as a SharePoint Consultant in India . Rajkiran having 7+ years of experience in Microsoft Technologies such as SharePoint 2019/2016/2013/2010, MOSS 2007,WSS 3.0, Migration, Asp.Net, C#.Net, Sql Server, Ajax, jQuery etc.He is C#Corner MVP (2 Times).

Hi, how would you find the embed code to use for a Modern List? Thanks!

Hi, it should be possible to embed a specific slide (e.g. slide 8) in a deck. But how? Any light? Thanks.

If you use a file viewer web part on a modern page you can select the slide number to start from. Works on 2019 and SPO.

Hi, is there a way to remove/hide the border and the bottom slide navigation arrows and just show the actual slide content?

Yes. You can do it by using custom css.

Hi Can you let me know how to do that Custom css?

Rajkiran, you have no idea how long I searched until I found your solution to my embedding problem. Thank you so much for helping me make my blog easier for my readers to use!

Thanks for the lovely comment. Keep reading my article.. I am always here to help .

Hi Rajkiran,

I haven’t had any problems with embedding the PowerPoint into a SharePoint page however I’d actually like it to run and loop continuously as it does normally. I’ve found that animations work on each slide but it doesn’t transition from one page to next, as it would normally if viewing it in PowerPoint view, nor does it loop at the end of the show.

I don’t really wish to save it as a video as that functionality has been disabled at work for space saving purposes. Any ideas at all?

Best, Trevor

Thanks , tried this but my pp does not automatically play when i embed it into SharePoint

Session expired

Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.

Woman with computer.

Mar 4, 2021

Switch between editing and viewing in PowerPoint for web

Robin Miller

Share on Facebook

  • Add our blog to your RSS feed reader" href="/rss/blog.xml" data-bi-name="RSS Subscription" data-bi-id="rss_feed" data-bi-bhvr="120" data-bi-socchn="RSSSubscription" title="Microsoft 365 Insider Blog RSS" target="blank" class="d-inline-block">

Hi, Office Insiders! I’m Robin Miller, a Program Manager on the PowerPoint team. I’m happy to announce that we have made it even easier to switch between editing and viewing presentations in PowerPoint for the web.

Editing and viewing in PowerPoint

As you are reviewing and getting familiar with the content of a presentation, use the Viewing mode, and don’t worry about accidentally moving things around or making unintended changes. When you’re ready to provide feedback and make updates, switch to the Editing mode.

We’ve updated PowerPoint for the web so you can now quickly change between both modes with a couple of clicks.

editing and viewing in PowerPoint

How it works  

As long as  you have  Edit  permissions  for a given pres entation, you  can choose to be in Editing or Viewing mode.   

  • To switch between the modes, click  Editing   in the ribbon  and  then  choose  Viewing .   To switch back, choose  Editing .  

Requirements  

  • You must have Editing permissions. Users with View-only  permissions   won’t  be able to switch into Editing mode.  

editing and viewing in PowerPoint

Tips and tricks  

  • The option to  Open in Desktop   can   also now be found in this menu.  If   you are running PowerPoint in Teams,  the  Open in Desktop  button remains outside the mode menu  for now.   

Known  issues    

The mode menu options are disabled and difficult to see when in Slide Sorter View while also using High Contrast Mode.  

Availability   

This feature is  rolling  out  to  PowerPoint for the web users. We are working on bringing the  feature  to PowerPoint for Windows and Mac in the future. 

Feedback  

If you have any feedback or suggestions, you can  send  them by clicking  Help > Feedback .  

Learn what  other information you should include in your feedback  to ensure  it’s actionable and reaches the right people. We’re excited to hear from you!  

Sign up for the  Office Insider newsletter  and get the latest information about Insider features in your inbox once a month!

Sorry, JavaScript must be enabled to use this app.

IMAGES

  1. SharePoint Online: How to Open PowerPoint in Presentation Mode

    sharepoint online open powerpoint in presentation mode

  2. Presenter view in PowerPoint: Setting up and using the Presentation

    sharepoint online open powerpoint in presentation mode

  3. PowerPoint: Sharing Your Presentation Online

    sharepoint online open powerpoint in presentation mode

  4. PowerPoint Presenter Mode

    sharepoint online open powerpoint in presentation mode

  5. Presenter view in PowerPoint: Setting up and using the Presentation

    sharepoint online open powerpoint in presentation mode

  6. How to View PowerPoint in Presentation Mode

    sharepoint online open powerpoint in presentation mode

COMMENTS

  1. SharePoint Online: How to Open PowerPoint in Presentation Mode?

    How to Open PowerPoint in Presentation mode from SharePoint Online? Any link to PowerPoint presentations (PPT, PPTX, or PPSX files) takes users to the Edit mode of the file. Even if the users don't have permission to edit, SharePoint opens it in edit mode with a banner saying you can't edit the file.

  2. Launching a PowerPoint file in Slide Show view from Sharepoint Online

    I originally saved my PPTX as a PPSX, because I wanted the file to launch as a PowerPoint Show. I saved it in Kiosk mode, because I wanted my users to click the Actions Buttons in order to progress throught the slides. Unfortunately, when I put a link to it in SharePoint, it just opens in Normal View instead of Slideshow View.

  3. Launching a PowerPoint file in Slide Show view from Sharepoint Online

    This had me troubled because I was trying to open in Slide Show mode from Teams and SharePoint for the same reasons and after trying all the suggested methods, I was coming up short. Here's how I made it work: Go to the document library in SharePoint. Click on the ellipsis next to the file name and select Preview

  4. How can I share a PowerPoint so that it opens automatically in

    If so, we'd suggest you save presentation file as .ppsx type file, if you are using PowerPoint in Windows, we'd suggest you go to PowerPoint File > Save as > Click More Options > select PowerPoint Show under Save as type, the file is saved as a .ppsx file. When the file is double-clicked, it opens as a slide show.

  5. open powerpoint from office 365 in presentation mode

    Several things that I would like to let you know: 1. When you share a View only link to specific people, you will get the previous behavior (presentation mode). 2. When you share a View only link as a guest link, you will open the file in Edit mode, with the banner saying you can't edit the file. Lastly, you can change the URL to show the file ...

  6. Open PowerPoint files in slide show directly in SharePoint Online

    PowerPoint 365 - Opening file in slideshow mode from OneDrive If you provide an open Share link (one that doesn't require signing in), and the user is not signed in, then the show will open in Slide Show mode. If the user is signed in, then the show starts in Edit mode. In addition, if you open a .PPSX file hosting on OneDrive or SharePoint ...

  7. How to get a link to PowerPoint file as slideshow in SharePoint?

    I have PowerPoint file uploaded in a SharePoint Online document library. I need a link that will directly open an Slideshow of the file. How can I get a link for slideshow? ... I directly uploaded *.ppsx file to the document library and shared the link but that also opened the PowerPoint file in edit mode. Any reference link or solution is most ...

  8. Display PowerPoint as slideshow on page

    On the page you want to display the slide, edit the page and from the ribbon select Insert => WebPart => Media and Content => Page Viewer => Add. open the tool pane as the webpart will prompt you (do save the page if prompted) in the "Link" box of the WebPart properties paste in the link to the pop-up page you viewed earlier with your ...

  9. Use PowerPoint Web App in a SharePoint library

    Go to a document library on your SharePoint site, and then click the link associated with the PowerPoint presentation. Click Edit in Browser. Click New Slide. If you want to make changes to the presentation beyond what you can do in the browser, do this: On the Home tab click Open in PowerPoint. In PowerPoint, save the presentation.

  10. Start a presentation automatically with a PowerPoint Show

    Make a slide show that starts automatically when opened. Select File > Save as (or Save a Copy ). Click More options. Browse to the folder where you want to save your presentation. In the File name box, type a name for your presentation. Under Save as type, select PowerPoint Show. The file is saved as a .ppsx file.

  11. Start the presentation and see your notes in Presenter view

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

  12. PowerPoint 365

    In PowerPoint Online, you can use File>Share>Embed to create an embed code. When this code is added to a web or blog page, the presentation will appear in slideshow mode. If that doesn't work for you, please vote for this PowerPoint Online User Voice suggestion: Create a "Share as Slideshow" link option. Hi John,

  13. How to Embed/ Display a PPT on SharePoint Intranet Site

    Go to SharePoint document library where you have uploaded the PPT. Click on the PPT name & it will open the file in new browser tab. Copy the URL of file up to sourcedoc query parameter like below: Append &action=view to the copied URL & add it to the src attribute. Add embed web part on a page & paste the iframe code in it.

  14. how to open powerpoint in presentation mode from sharepoint

    Any link to PowerPoint presentations (PPT, PPTX, or PPSX files) takes users to the Edit mode of the file. Even if the users don't have permission to edit, SharePoint opens it in…. This is my personal blog. Articles written on this blog are from my experience for my own reference and to help others.

  15. How to open Office 365 documents in "Viewing" mode by default?

    1. Open the file in the desktop version of Excel, then Save a Copy. Underneath the filename go to Options, then the Tools dropdown to the left of the Save button. Select General Options. On the ensuing popup, select "Read-only recommended". After doing this, the file opens in Viewing mode in Teams by default. Share.

  16. Automatically open Powerpoint in presenter mode, on correct screens

    4. Save the file in PowerPoint Show (*.ppsx) format. It will open automatically in presentation mode. From Microsoft's site: PowerPoint Show .ppsx. A presentation that always opens in Slide Show view rather than in Normal view. Tip: To open this file format in Normal view so that you can edit the presentation, open PowerPoint.

  17. PowerPoint for the web

    If you select the Open in PowerPoint button on the PowerPoint for the web toolbar, ... If your presentation is saved in a SharePoint document library, then your presentation is online and you can share it by sending a link instead of an email attachment. ... You can also add notes in Edit mode. WYSIWYG viewing. Edit your presentation in a form ...

  18. Open an O365 PowerPoint file in presentation mode and at a specific

    I have an O365 PowerPoint file into which I'd like to insert links to other O365 PowerPoint files. I want these to open those files at a specific slide and in presentation or slideshow mode. The O365 viewer seems to be pretty locked down with nested iframes and appears to require a POST request. The "friendly" URL you see in the doc library ...

  19. How certain features behave in web-based PowerPoint

    Print. In PowerPoint for the web, you can print one slide per page, with headers and footers. (For details, see Print your PowerPoint slides, handouts, or notes) and you can print notes pages, or handouts. To get more printing layout options click Edit in PowerPoint, and print in the PowerPoint desktop application.

  20. How to embed PowerPoint Slide in SharePoint

    Step 1: Create a PowerPoint in your local computer or Office online. Step 2: Create a document library in SharePoint. Step 3: Upload that PPT file inside this document library. embed powerpoint slide in sharepoint. Step 4: Next open the PPT file and go to the share option to generate the Embed code. Please look into the screenshot below.

  21. Sharing PowerPoint slides to open in the slide show view

    To do that, · Right click on the Presentation and click on Share. · In the Choose an option drop down select uncheck Allow editing under Link settings box and then click on Copy Link. Now copy the link and share it with your friends. Based on my test we can make a slide show that starts automatically when opened in PowerPoint desktop app and ...

  22. Switch between editing and viewing in PowerPoint for web

    If you are running PowerPoint in Teams, the Open in Desktop button remains outside the mode menu for now. Known issues . The mode menu options are disabled and difficult to see when in Slide Sorter View while also using High Contrast Mode. Availability . This feature is rolling out to PowerPoint for the web users.

  23. Opening a ppsx from Sharepoint -- won't open in Presentation mode

    It remains in presentation mode within the tab in the web browser, but I can't figure out how to get it back into full screen mode at that point. Any help is greatly appreciated! You can't. Office Online and SharePoint open all presentations in Edit (Normal) mode, not Slide Show. To complain, click on File>Feedback>Send a Frown.