<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Microsoft 365 Insider Blog articles</title>
    <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/bg-p/Microsoft365InsiderBlog</link>
    <description>Microsoft 365 Insider Blog articles</description>
    <pubDate>Sat, 12 Sep 2026 23:52:58 GMT</pubDate>
    <dc:creator>Microsoft365InsiderBlog</dc:creator>
    <dc:date>2026-09-12T23:52:58Z</dc:date>
    <item>
      <title>6 Python in Excel techniques worth stealing from an Excel champion</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/6-python-in-excel-techniques-worth-stealing-from-an-excel/ba-p/4552793</link>
      <description>&lt;P&gt;Excel has more in it than most people ever go looking for, and&amp;nbsp;&lt;A href="https://support.microsoft.com/en-us/office/introduction-to-python-in-excel-55643c2e-ff56-4168-b1ce-9428c8308545" target="_blank" rel="noopener"&gt;Python in Excel&lt;/A&gt; is a good example. If you associate code in Excel with VBA, this is a very different thing: Python goes straight into your worksheets with &lt;STRONG&gt;=PY &lt;/STRONG&gt;or &lt;STRONG&gt;Formulas&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Insert Python&lt;/STRONG&gt;, runs in the Microsoft cloud, and returns its result to the grid. There’s no local environment to set up, and NumPy, pandas, Matplotlib, seaborn, and statsmodels are already imported.&lt;/P&gt;
&lt;P&gt;I work on the Python in Excel team, and I wanted to see it in the hands of someone using it under real pressure, so I asked &lt;A href="https://www.linkedin.com/in/jmerle/" target="_blank" rel="noopener"&gt;Jasper van Merle&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Many people who compete in the &lt;A href="https://fmworldcup.com/" target="_blank" rel="noopener"&gt;Microsoft Excel World Championship&lt;/A&gt; come from finance, and the competition has long rewarded deep formula knowledge. Jasper took a different route: He arrived from a pure software background, competing in VBA until Python in Excel reached the Beta Channel, and then built his competition tooling around it. It works: He’s ranked as high as sixth in the world, in a field of formula specialists.&lt;/P&gt;
&lt;P&gt;Here are six techniques he uses a lot. None are competition-specific: They cut down setup time and make awkward problems tractable, clock or no clock.&lt;/P&gt;
&lt;H2&gt;1. Keyboard shortcuts&lt;/H2&gt;
&lt;P&gt;The Python editor follows the same keyboard conventions as most modern code editors, so muscle memory from elsewhere transfers easily. All you have to do is open it from &lt;STRONG&gt;Formulas&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Editor&lt;/STRONG&gt;, and it will appear in a side pane.&lt;/P&gt;
&lt;img /&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;In general, I’m quite happy with [the Python editor]. If it hadn’t existed, I would have built my own add-in to do essentially the same thing.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Three worth knowing:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Ctrl &lt;/STRONG&gt;+&lt;STRONG&gt; /&lt;/STRONG&gt; to toggle comments on the selected lines&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Shift &lt;/STRONG&gt;+&lt;STRONG&gt; Alt &lt;/STRONG&gt;+&lt;STRONG&gt; right arrow&lt;/STRONG&gt; to grow the selection by one syntax scope at a time, and &lt;STRONG&gt;Shift &lt;/STRONG&gt;+&lt;STRONG&gt; Alt &lt;/STRONG&gt;+&lt;STRONG&gt; left arrow&lt;/STRONG&gt; to shrink it&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Ctrl &lt;/STRONG&gt;+&lt;STRONG&gt; Shift &lt;/STRONG&gt;+&lt;STRONG&gt; L&lt;/STRONG&gt; to select every occurrence of whatever is selected, making renaming a variable a single action&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Ctrl &lt;/STRONG&gt;+&lt;STRONG&gt; / &lt;/STRONG&gt;is the one Jasper reaches for most. Commenting out a block and re-running the cell narrows down what’s misbehaving, and with no breakpoints available it does much of the work a debugger otherwise would.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;Just a shortcut in the editor, but it’s immensely useful to me. As a programmer, we all know what this does. But your average accountant does not.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;H2&gt;2. Initialization settings&lt;/H2&gt;
&lt;P&gt;Python in Excel lets you edit the code that runs before every other Python cell in the workbook. Put your imports and helper functions there and every cell can use them. This information travels with the workbook.&lt;/P&gt;
&lt;P&gt;Before this was editable, the workaround was a manual one. Jasper uses it to widen his set of default imports and adds a block like the below example, so what he reaches for under time pressure is always in scope:&lt;/P&gt;
&lt;LI-CODE lang=""&gt;import itertools
import re
from collections import Counter, defaultdict, deque
from dataclasses import dataclass
from datetime import date, datetime, timedelta
from functools import cache
from math import *&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;from math import *&lt;/STRONG&gt; brings in a long list of mathematical utilities such as &lt;STRONG&gt;sqrt() &lt;/STRONG&gt;and &lt;STRONG&gt;pi&lt;/STRONG&gt;.&lt;/P&gt;
&lt;img /&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;The first thing I do when I open a new sheet is run a macro that inserts initialization code into A1.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;To configure your Python initialization code:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the settings, then click &lt;STRONG&gt;Formulas&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Initialization&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Add your imports and any helper functions you reuse, and then apply the changes.&lt;/LI&gt;
&lt;LI&gt;To confirm it worked, call one of your helpers from any Python cell in the workbook without importing anything first.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE&lt;/STRONG&gt;: The pane already contains statements Python in Excel needs to calculate correctly, including&lt;STRONG&gt; import excel&lt;/STRONG&gt; and the two &lt;STRONG&gt;excel.set_xl_ &lt;/STRONG&gt;conversion lines. Add your code alongside them rather than replacing what’s there.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;TIP&lt;/STRONG&gt;: Add type hints to your helpers. Autocomplete gets noticeably better, and they double as documentation when you return to a snippet months later.&lt;/P&gt;
&lt;H2&gt;3. Open-source libraries&lt;/H2&gt;
&lt;P&gt;It’s easy for Python in Excel work to start and end with pandas, and for good reason: It’s incredible for tabular data. However, plenty of problems aren’t tabular, and beyond the five libraries imported by default, &lt;A href="https://support.microsoft.com/en-us/office/open-source-libraries-and-python-in-excel-c817c897-41db-40a1-b9f3-d5ffe6d1bf3e" target="_blank" rel="noopener"&gt;many others are available&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;NetworkX is a good example. Anything shaped like a graph (routing, dependencies, connections, shortest paths) becomes just a few lines of code.&lt;/P&gt;
&lt;P&gt;Consider you have a table of European cities with &lt;STRONG&gt;From&lt;/STRONG&gt;, &lt;STRONG&gt;To&lt;/STRONG&gt; and &lt;STRONG&gt;Kilometers&lt;/STRONG&gt; columns:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;One can calculate the shortest route between two cities. The drawing methods render the same table as a network diagram:&lt;/P&gt;
&lt;img /&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;Every time there’s a maze to solve, I just dump it into NetworkX and ask for the shortest path.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;H2&gt;4. Stack traces&lt;/H2&gt;
&lt;P&gt;When Python code fails in Excel, you get the exception message and nothing else. Where you’d expect a stack trace, you get a single line: &lt;STRONG&gt;ZeroDivisionError: division by zero&lt;/STRONG&gt;. That tells you what went wrong, not where. The workaround is to catch the exception yourself and re-raise it with the stack trace as its message.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;You get the error message, and that’s it. Good luck. So I wrote a wrapper around that that just puts the stack trace into the message, and then you do get to see it.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here’s how you can view the full stack trace:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Make it available to every cell by modifying your initialization code. This is the wrapper Jasper uses:&lt;LI-CODE lang=""&gt;import re

from traceback import format_exc

from typing import Any, Callable



def run(func: Callable[[], Any]) -&amp;gt; Any:

    try:

        return func()

    except Exception:

        # Excel only shows the error message, not the stacktrace, so we make

        # the stacktrace the exception's message to have more to work with

        trace = format_exc().strip().split(":", 1)[1]

        trace = re.sub(r"File \"[^\"]+\", line \d+, in (.*)", r"In \1", trace)

        raise Exception(trace)&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;To use it, put your work in a function and call that function through run:&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI-CODE lang=""&gt;def divide(a, b):

    return a / b



def solve_problem():

    a = 100

    b = 0

    return divide(a, b)



run(solve_problem)&lt;/LI-CODE&gt;
&lt;P&gt;Without the wrapper, that cell reports only the bare exception:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;With it, you get the path the failure actually took:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;TIP&lt;/STRONG&gt;: Writing your solutions as functions also makes it easy to return early and inspect intermediate values, a reasonable stand-in for breakpoints.&lt;/P&gt;
&lt;H2&gt;5. Execution order&lt;/H2&gt;
&lt;P&gt;In a spreadsheet, formulas recalculate based on dependencies, so where you put one rarely matters. Python in Excel doesn’t work that way. Python cells run in row-major order, across each row from column A rightward, then down to the next row, and across worksheets in tab order. Which cell needs which result makes no difference.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;If you don’t know it exists and you think the formula way, then your computation will not work.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Take two Python cells. One defines a value and returns it:&lt;/P&gt;
&lt;LI-CODE lang=""&gt;rate = 0.15

rate&lt;/LI-CODE&gt;
&lt;P&gt;The other uses it:&lt;/P&gt;
&lt;LI-CODE lang=""&gt;rate * 100&lt;/LI-CODE&gt;
&lt;P&gt;Put the cell that uses the value above the one that defines it, and it runs first and fails:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;Swap them. Nothing about the code changes, but now it works:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;That trips people up most when they arrive with formula instincts. It’s also why initialization settings help: They run before everything else, no matter where your cells sit.&lt;/P&gt;
&lt;H2&gt;6. Calculation modes&lt;/H2&gt;
&lt;P&gt;Automatic calculation is the right default, and most of the time you’ll leave it there. Occasionally, you won’t. In a sheet full of expensive Python computations, iterating on one cell means everything around it recalculates, too.&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;This comes up often in competition, where the computations are heavy and the clock is running. Excel’s calculation modes let you decide when Python cells re-run.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;I recently discovered the value of this feature, and greatly appreciate the ability to take control over which cells run and which cells do not.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;To take control of when Python cells recalculate:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;To stop Python cells recalculating until you ask, click &lt;STRONG&gt;Formulas&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Calculation Options&lt;/STRONG&gt;, and select &lt;STRONG&gt;Partial&lt;/STRONG&gt;. Ordinary worksheet formulas carry on as usual. To make those wait too, select &lt;STRONG&gt;Manual&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;To recalculate when you’re ready, press &lt;STRONG&gt;F9&lt;/STRONG&gt;, or click &lt;STRONG&gt;Formulas&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Calculate Now&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;To recalculate one cell on its own, select the error triangle beside it, and then click &lt;STRONG&gt;Calculate Now&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;To resume recalculating as you work, return to &lt;STRONG&gt;Calculation Options&lt;/STRONG&gt; and select &lt;STRONG&gt;Automatic&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;The same menu has &lt;STRONG&gt;Format Stale Values&lt;/STRONG&gt;, which switches itself on when you move to &lt;STRONG&gt;Partial&lt;/STRONG&gt;. It’s why a waiting cell is easy to spot: Its value shows with strikethrough, so it stays clear what’s current and what’s just the last answer.&lt;/P&gt;
&lt;P&gt;Here the destination changed to Berlin, but the result still shows the earlier route to Luxembourg:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;After recalculating, it catches up:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;None of this is really about competition; the clock just makes it obvious sooner. The change is that problems you’d once have looked at, decided weren’t worth the formulas, and quietly solved somewhere else are now a few lines of code in the cell where the data already lives.&lt;/P&gt;
&lt;P&gt;If you haven’t tried it yet, &lt;A href="https://support.microsoft.com/en-us/office/get-started-with-python-in-excel-a33fbcbe-065b-41d3-82cf-23d05397f53d" target="_blank" rel="noopener"&gt;Get started with Python in Excel&lt;/A&gt; walks through writing your first Python cell.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;About Jasper van Merle&lt;/H4&gt;
&lt;P&gt;Jasper van Merle builds bespoke software at IMC Trading in Amsterdam. Outside work, he’s an avid hiker, preferably away from the flatlands of the Netherlands, and occasionally competes in programming competitions. He has competed in Excel Esports since 2024 and has grown fond of the community around it. Find him on&amp;nbsp;&lt;A href="https://www.linkedin.com/in/jmerle/" target="_blank" rel="noopener"&gt;LinkedIn&lt;/A&gt; and &lt;A href="https://github.com/jmerle" target="_blank" rel="noopener"&gt;GitHub&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2026 15:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/6-python-in-excel-techniques-worth-stealing-from-an-excel/ba-p/4552793</guid>
      <dc:creator>Chris_Gross</dc:creator>
      <dc:date>2026-09-10T15:45:00Z</dc:date>
    </item>
    <item>
      <title>7 features it’s not too late to try out this year</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/7-features-it-s-not-too-late-to-try-out-this-year/ba-p/4553099</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We may be three-quarters of the way into 2026, but there’s still plenty of time to achieve your resolutions, supercharge your work, and make the most of this year. With that, we’ve rounded up some of the most popular features to release lately in your favorite apps. It’s not too late to try them out, reap their benefits, and provide feedback for our team to optimize your Microsoft 365 experience! &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;1. Import data smoothly in Excel &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Bringing data into Excel is a core part of so many workflows, but doing it is often more complex than it needs to be. No more! The new Import Functions make bringing text-based data into Excel for Windows quick and intuitive, using a single formula. &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Availability&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:  Windows Version 2502 (Build 18604.20002) or later &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/bring-data-into-excel-with-the-new-import-functions/4485613" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Bring data into Excel with the new Import Functions&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;2. Edit images right in PowerPoint &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Switching between PowerPoint and an image-editing tool can disrupt your flow, which is why we’ve added the ability to directly enhance visuals inside PowerPoint for the web, for Windows, and for Mac. You can remove backgrounds, erase or move unwanted elements, change image quality, upscale resolution, or even edit text that appears on an image.&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Availability&lt;/STRONG&gt;: PowerPoint for the web, Windows Version 2510 (Build 19422.20000) or later, and Mac Version 16.104 (Build 25121423) or later &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/powerful-image-editing-now-in-powerpoint/4499208" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Powerful image editing, now in PowerPoint&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;3. Write math &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;that’s &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;accessible for all &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We’ve made a bunch of improvements across Microsoft 365 that make writing, inserting, and editing math more inclusive and intuitive. Updates include keyboard shortcuts in PowerPoint, feedback with sound on Windows, better math editing with Narrator, the ability to copy and paste native Office Math in OneNote from webpages, and so much more. &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more and get availability&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/make-math-inclusive-for-everyone-with-microsoft-365/4489147" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Make math inclusive for everyone with Microsoft 365&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;4. Join Teams calls with confidence&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;You’ll never have to say, “Can you hear me now?” Teams allows you to test your microphone and speakers directly from the pre-join screen, reducing troubleshooting and interruption when you’re in a meeting. &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Availability&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: rolling out to users across desktop experiences  &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/test-your-audio-before-joining-a-teams-meeting/4529848" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Test your&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;audio &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;before joining a Teams meeting&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;5. &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Prevent &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;overlap&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;ing&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt; meetings&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80,&amp;quot;335559740&amp;quot;:278}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;If conflicts arise on your calendar, Copilot in new Outlook for Windows and Outlook for the web can help you reschedule – automating a tedious task and helping you stay on top of your schedule. &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Availability&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: rolling out to Teams, Outlook for the web, and new Outlook for Windows with a Microsoft 365 Copilot Enterprise license &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/copilot-can-reschedule-conflicting-events-in-outlook/4471514" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Copilot can reschedule conflicting events in Outlook&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;6. Create hyperlinks fast in Word &lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Some things should just be effortless – like hyperlinking a block of text. This update to Word for the web, for Windows, and for Mac allows you to instantly paste a link onto a word or phrase in a document.&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Availability&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: Word for the web, Windows Version 2511 (Build 19530.20006) or later, and Mac Version 16.104 (Build 25120915) or later &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/add-links-to-text-faster-in-word/4483183" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Add links to text faster in Word&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;7. Prompt like a pro &lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Microsoft 365 Copilot now suggests customized prompts tailored to your organization’s priorities, terminology, and workflows, making your responses stronger and more useful. &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Availability&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: Microsoft 365 Copilot Standard and Premium licenses  &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/leverage-prompts-created-by-your-organization-in-copilot/4533162" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Leverage prompts created by your organization in Copilot&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt; &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Which feature will you try first? Do you have a favorite? Let us know in the comments! &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2026 17:45:01 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/7-features-it-s-not-too-late-to-try-out-this-year/ba-p/4553099</guid>
      <dc:creator>amaguire</dc:creator>
      <dc:date>2026-09-03T17:45:01Z</dc:date>
    </item>
    <item>
      <title>Text predictions off by default in Word and Outlook</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/text-predictions-off-by-default-in-word-and-outlook/ba-p/4549085</link>
      <description>&lt;P&gt;We’re making an update to the default text predictions experience in Microsoft Word and Microsoft Outlook, giving you more control over whether you receive suggestions as you type.&lt;/P&gt;
&lt;H2&gt;What’s new&lt;/H2&gt;
&lt;P&gt;Text predictions will continue to be available, but it will no longer be turned on by default in Word for Windows, for the web, for Android, and for iOS, and in classic Outlook for Windows and Outlook for Mac.&lt;/P&gt;
&lt;P&gt;You will still be able to turn on the feature from your Settings anytime. Additionally, some Outlook for Android and for iOS experiences already have text predictions turned off by default – no changes are being made to those experiences as part of this rollout.&lt;/P&gt;
&lt;H2&gt;Why it matters&lt;/H2&gt;
&lt;P&gt;Text predictions helps you write documents and emails more efficiently by suggesting words and phrases as you type. While some people find these suggestions useful, others prefer to write without predictive text. This update gives you more flexibility, allowing you to customize your editing experience and create a workflow that best suits your needs.&lt;/P&gt;
&lt;P&gt;Our goal is to provide a more consistent and user-controlled writing experience across Microsoft 365 applications. This update helps ensure that predictive text remains available for people who find it helpful, while reducing unwanted interruptions for those who prefer to write without suggestions appearing automatically.&lt;/P&gt;
&lt;H2&gt;How it works&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Open Word or Outlook on your desktop or mobile device, and under&amp;nbsp;&lt;STRONG&gt;Settings &lt;/STRONG&gt;you will see that &lt;STRONG&gt;Text Predictions&lt;/STRONG&gt; is turned off by default. You can turn it on by selecting the checkbox or toggle.&lt;/LI&gt;
&lt;/UL&gt;
&lt;img /&gt;&lt;img /&gt;
&lt;H2&gt;Availability&lt;/H2&gt;
&lt;P&gt;This change is rolling out to users running Word for the web or:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Word for Windows&lt;/STRONG&gt;: Version 2609 (Build 20430.20000) or later.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Classic Outlook for Windows&lt;/STRONG&gt;: &lt;SPAN class="lia-text-color-21"&gt;Version 2608&amp;nbsp;&lt;/SPAN&gt;(Build 20329.20000) or later.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Outlook for Mac&lt;/STRONG&gt;: Version 16.113 (26080119) or later.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Word for Android&lt;/STRONG&gt;: Build 16.0.20326.20000 or later.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Word for iOS&lt;/STRONG&gt;: Version 2.112 (Build 26080127) or later.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Rollout timing will be communicated through the Microsoft 365 admin center and release notes.&lt;/P&gt;
&lt;H2&gt;Feedback&lt;/H2&gt;
&lt;P&gt;We’d love to hear what you think about this update! To provide feedback, select &lt;STRONG&gt;Help &lt;/STRONG&gt;&amp;gt; &lt;STRONG&gt;Feedback &lt;/STRONG&gt;in Word or Outlook.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2026 17:53:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/text-predictions-off-by-default-in-word-and-outlook/ba-p/4549085</guid>
      <dc:creator>Zhang Li</dc:creator>
      <dc:date>2026-09-01T17:53:57Z</dc:date>
    </item>
    <item>
      <title>SmartArt is becoming more accessible in PowerPoint</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/smartart-is-becoming-more-accessible-in-powerpoint/ba-p/4507653</link>
      <description>&lt;P&gt;Hi, Insiders! I’m Shireen Salma, a Product Manager on the Office Accessibility team. Today, I’m excited to share how we’re making SmartArt in PowerPoint more accessible for people who use screen readers.&lt;/P&gt;
&lt;H2&gt;SmartArt is becoming more accessible in PowerPoint&lt;/H2&gt;
&lt;P&gt;SmartArt is commonly used to visualize processes, hierarchies, relationships, and more. But until now, these visuals haven’t always translated well for people using assistive technology. When a screen reader encounters SmartArt, it typically announces it simply as “SmartArt,” followed by the text in each node. While the content is technically available, the meaning behind how those elements relate to each other is often lost.&lt;/P&gt;
&lt;P&gt;For example, in an equation-style SmartArt representing “A + B = C,” a screen reader user may only hear “A, B, C,” without the contextual understanding that A and B combine to form C. This makes it difficult to interpret diagrams where relationships between elements are essential to understanding the message. This challenge also affects process diagrams, hierarchies, and relationship-based SmartArt, where connections that are visually obvious to sighted users are not conveyed programmatically.&lt;/P&gt;
&lt;P&gt;To work around this, Accessibility Checker has traditionally flagged SmartArt for missing alt text, asking authors to manually describe the visual relationships. But these descriptions often become outdated when SmartArt is edited, such as when a new step is added to a process or a new person is included in an org chart.&lt;/P&gt;
&lt;P&gt;With this update, PowerPoint can now generate meaningful accessibility descriptions for SmartArt automatically.&lt;/P&gt;
&lt;H2&gt;How it works&lt;/H2&gt;
&lt;P&gt;Each SmartArt diagram already contains information about its layout type, such as list, process, hierarchy, or cycle, as well as the content within each node. PowerPoint now uses this information to dynamically generate descriptive context within its accessibility tree so that screen readers can access meaningful information about the diagram.&lt;/P&gt;
&lt;P&gt;For example, instead of hearing only individual items, a screen reader may now announce:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;“Basic block list with three items: A, B, and C”&lt;/LI&gt;
&lt;LI&gt;“Equation diagram showing A plus B equals C”&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These descriptions are generated programmatically and updated automatically whenever the SmartArt’s structure or content changes. This ensures that assistive technologies always reflect the most current version of the diagram, without requiring authors to manually create or maintain alt text.&lt;/P&gt;
&lt;H2&gt;Availability&lt;/H2&gt;
&lt;P&gt;This update is available to&amp;nbsp;Windows users with a Microsoft 365 subscription running PowerPoint&amp;nbsp;Version 2503&amp;nbsp;(Build&amp;nbsp;19729.20000) or later.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Features covered on this blog roll out over time to enable us to monitor quality and performance, so some preview features may not be available to you right away. Also note that features may be paused, adjusted, or removed as part of that process.&lt;/P&gt;
&lt;H2&gt;Feedback&lt;/H2&gt;
&lt;P&gt;We’d love to hear your thoughts on how this update is working! Open Accessibility Assistant, then select&amp;nbsp;&lt;STRONG&gt;Give Feedback&lt;/STRONG&gt;&amp;nbsp;to provide feedback.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program &lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter &lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2026 15:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/smartart-is-becoming-more-accessible-in-powerpoint/ba-p/4507653</guid>
      <dc:creator>shireensalma</dc:creator>
      <dc:date>2026-08-24T15:45:00Z</dc:date>
    </item>
    <item>
      <title>Link to a location in Word for Windows and Mac</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/link-to-a-location-in-word-for-windows-and-mac/ba-p/4541663</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;I’m excited to announce that you can share direct cloud links to specific locations within a document in Microsoft Word for Windows and for Mac.&amp;nbsp;&lt;/SPAN&gt; &lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;What’s&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt; new&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;If you work on long, complex documents, you’ve probably experienced the frustration of telling a teammate, “See the section halfway down page 47” and waiting while they scroll to find the right content.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;With the ability to link to a location, you can take collaborators exactly where they need to go. Just create a shareable link to a specific part of the document, and when someone opens the link, they’ll land exactly where you intended.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Why it matters&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This feature provides benefits such as:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Helping teams edit and discuss content more efficiently.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Speeding up the process of reviewing and resolving feedback.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Making navigation to specific content smoother.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Communicating clearly to collaborators the areas that need feedback.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Keeping teams aligned without constant back-and-forth.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;How it works&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Open a Word document on your Windows or Mac device.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Select the content where you want to create a link.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Right-click on the selection to open the context menu, then select &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Copy Link to Location&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;div data-video-id="https://youtu.be/iCoDSLIoDtw/1786035927637" data-video-remote-vid="https://youtu.be/iCoDSLIoDtw/1786035927637" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FiCoDSLIoDtw%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiCoDSLIoDtw&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FiCoDSLIoDtw%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;A link will be generated, and you can now copy and share this with others! &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;div data-video-id="https://youtu.be/FTemyjyprwc/1786035939794" data-video-remote-vid="https://youtu.be/FTemyjyprwc/1786035939794" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FFTemyjyprwc%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DFTemyjyprwc&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FFTemyjyprwc%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;When they open the link, they’ll go directly to the selected content in their preferred Word document experience (web or desktop). &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;div data-video-id="https://youtu.be/sYTJeoHZuIw/1786035952785" data-video-remote-vid="https://youtu.be/sYTJeoHZuIw/1786035952785" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FsYTJeoHZuIw%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DsYTJeoHZuIw&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FsYTJeoHZuIw%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Availability&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This feature is available to Word users running:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Windows&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: Version 2605 (Build 20011.20000) or later.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Mac&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: Version 16.109 (Build 26051019) or later.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We’d love to hear what you think of this update! From the &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Help &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;tab at the top of your Word app, select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Feedback&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;and include #LinkToLocation in your feedback description.&lt;/SPAN&gt;&lt;SPAN aria-label="Plain text content control"&gt;&lt;SPAN data-contrast="auto"&gt;​&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;​&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2026 17:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/link-to-a-location-in-word-for-windows-and-mac/ba-p/4541663</guid>
      <dc:creator>Rubba</dc:creator>
      <dc:date>2026-08-13T17:45:00Z</dc:date>
    </item>
    <item>
      <title>Co-create slides with Copilot in PowerPoint for iPad</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/co-create-slides-with-copilot-in-powerpoint-for-ipad/ba-p/4546240</link>
      <description>&lt;P&gt;I’m excited to introduce a feature many of you already use on desktop and the web to PowerPoint for iPad: the ability to co-create with Microsoft 365 Copilot directly in your presentation.&lt;/P&gt;
&lt;H2&gt;What’s new&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Whether you&lt;/SPAN&gt;’&lt;SPAN data-contrast="auto"&gt;re building a first draft, polishing a few slides, or transforming the design and layout, Copilot can make edits directly on the presentation in just a few clicks. And with iPad providing on-the-go flexibility, you can keep working or switch apps while Copilot works in the background.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;With Copilot in PowerPoint for iPad, you can:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:360,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;singleLevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Turn &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;rough ideas&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; or work context&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; into a polished deck&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;: Transform meeting notes, an outline, an &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;email,&lt;/SPAN&gt; &lt;SPAN data-ccp-parastyle="List Bullet"&gt;or images from your gallery &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;into a presentation, right on the canvas.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:360,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;singleLevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Make quick edits&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; or transform slides&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; instantly&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;: Ask it to rewrite text, tidy formatting, or &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;simplify &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;or fix a &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;slide’s&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; design, and it will update your presentation.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-ccp-props="{}"&gt; &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:360,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;singleLevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;&lt;STRONG&gt;Extract key insights&lt;/STRONG&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Make sense of the presentation by using Copilot to extract key insights&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;, &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;prep for a meeting, or summarize files or action items&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-ccp-props="{}"&gt; &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:360,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;singleLevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Stay in the flow&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Keep working on your slides or switch to another app while Copilot runs, and review when your changes are ready.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;img /&gt;
&lt;H2&gt;Why it matters&lt;/H2&gt;
&lt;P&gt;Copilot co-creation in PowerPoint for iPad allows you to:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Work anywhere, anytime&lt;/STRONG&gt;: Create drafts and refine slides while on the go.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Increase flexibility and ease&lt;/STRONG&gt;: Use voice and chat without manual interactions.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Supercharge productivity&lt;/STRONG&gt;: Edit faster and be empowered to achieve more.&lt;/LI&gt;
&lt;/UL&gt;
&lt;div data-video-id="https://youtu.be/cQ-X-8bBx1A/1786564900746" data-video-remote-vid="https://youtu.be/cQ-X-8bBx1A/1786564900746" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FcQ-X-8bBx1A%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DcQ-X-8bBx1A&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FcQ-X-8bBx1A%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;H2&gt;How it works&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;Open PowerPoint on your iPad and sign in with a Copilot-enabled account, then open a blank presentation or an existing deck.&lt;/LI&gt;
&lt;LI&gt;Select the &lt;STRONG&gt;Copilot &lt;/STRONG&gt;icon to open Copilot Chat.&lt;/LI&gt;
&lt;LI&gt;Pick one of the suggested actions, type your request, or tap the mic icon to speak.&lt;/LI&gt;
&lt;LI&gt;Review and accept or reject the changes made directly on your slides.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;Tips and tricks&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Work asynchronously for longer tasks&lt;/STRONG&gt;: You don’t have to wait if Copilot is taking longer. Drag the chat pane aside to keep working on your slides or leave the app entirely. Copilot will keep working in the background, and you can return to review.&lt;/LI&gt;
&lt;/UL&gt;
&lt;img /&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt;Create or edit using context or other files&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;: The agent implicitly grounds your work context. You can explicitly reference existing files (documents, spreadsheets, or presentations) using the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt;+ &lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;button.&lt;/SPAN&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt;Start with voice when the idea is rough&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;: On mobile, it’s often faster to speak your request than type a detailed prompt.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;img /&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt;Use chat mode to ask&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;: Copilot editing is on by default. To ask questions without changing your deck, tap the edit pill and choose&lt;/SPAN&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt; Chat only.&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;img /&gt;
&lt;H2&gt;Availability&lt;/H2&gt;
&lt;P&gt;This feature is available to users with access to Microsoft 365 Copilot and using PowerPoint for iPad Version 2.112 (Build 26080725) or later.&lt;/P&gt;
&lt;H2&gt;Feedback&lt;/H2&gt;
&lt;P&gt;We’d love to hear what you think! You can share your feedback on this new feature by selecting &lt;STRONG&gt;Help&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Feedback&lt;/STRONG&gt; in the PowerPoint app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2026 15:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/co-create-slides-with-copilot-in-powerpoint-for-ipad/ba-p/4546240</guid>
      <dc:creator>aparna_jethani</dc:creator>
      <dc:date>2026-08-13T15:45:00Z</dc:date>
    </item>
    <item>
      <title>Take back-to-school tasks off your plate with Microsoft Copilot</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/take-back-to-school-tasks-off-your-plate-with-microsoft-copilot/ba-p/4544759</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Back-to-school planning doesn’t stop after the first day of classes. By the second week, your to-do list is already packed with an early dismissal, a practice change, and a form someone forgot to mention until bedtime.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;The hard part usually isn’t finding the information – it's remembering to check it again at the right time. Microsoft Copilot can help with this! You can use Copilot Chat to work with calendars you already have, or Copilot Tasks to hand off a one-time or recurring job. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Let’s explore some ways it can streamline this upcoming school year.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;NOTE&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: This article focuses on Microsoft Copilot signed in with a personal Microsoft account. Copilot Tasks is currently in preview, so availability, features, and usage limits may change.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;Keep school details in one chat&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:480,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;In Copilot Chat, attach your school handbook, calendar, or supplies list, and when questions come up, you can return to that chat instead of searching through your email again. You can ask when the next half-day is, check a school policy, or find a sports sign-up deadline.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;SPAN data-contrast="auto"&gt;Try this prompt&lt;/SPAN&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;I’m attaching our school handbook and calendar. Use these files to answer my questions about schedules, policies, and deadlines. If the answer isn’t in the files, tell me.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;img /&gt;
&lt;H2 aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;Schedule reminder&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;s&lt;/SPAN&gt; &lt;SPAN data-ccp-parastyle="heading 1"&gt;for important tasks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:480,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Copilot Tasks is useful when the job needs to happen later, or more than once. Describe what you want in everyday language, choose when it should run, and review the result when it’s finished. Tasks can run immediately, later, or on a recurring schedule. You can pause, edit, stop, or delete them from the Tasks view anytime.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;For example, you could ask for a checklist for the week every Sunday evening, set a reminder before the next early release day, or create a weekly summary of upcoming school dates. If a task needs access to email, a calendar, or cloud storage, you can choose which connected service to authorize. Copilot will ask for approval before taking sensitive actions, such as sending a message, submitting personal information, or completing a purchase.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;SPAN data-contrast="auto"&gt;Try this prompt&lt;/SPAN&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Every Sunday at 6 PM, prepare a checklist for the school week ahead using the dates I’ve shared. Include anything due, schedule changes, and items we need to bring. If I’ve connected an email account, email the checklist to me.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;img /&gt;
&lt;H2 aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;Use class materials for a quick study check&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:480,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;A syllabus and set of class notes can also give Copilot enough context to help your children review for exams. Ask for a short quiz, an explanation of a difficult topic, or a list of upcoming assignments.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This works best as a study aid rather than a replacement for homework: Students should still check source material and do their own work.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;SPAN data-contrast="auto"&gt;Try this prompt&lt;/SPAN&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Using this syllabus and these notes, make a five-question practice quiz on this week’s biology unit. After I answer, explain anything I missed and show me where it appears in the notes.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;Hand off&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;your research&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:480,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Choosing an after-school program or a laptop that meets the school’s requirements can take hours and lots of browser tabs. A one-time Copilot Task can collect the options and organize them against the criteria you provide, making the entire process faster and simpler. Always review the original sources before you register, buy, or share personal information.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;SPAN data-contrast="auto"&gt;Try this prompt&lt;/SPAN&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Find three after-school programs near me for elementary-age students. Compare cost, days and hours, pickup time, registration deadline, and transportation options. Include the source for each detail and flag anything you couldn’t confirm.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 1"&gt;Tips for effectively using Copilot&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:480,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;No matter how you leverage Copilot this school season, keep these tips in mind:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Use a personal account&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: Don’t use an employer-managed account to share family and school details.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Keep what you share limited to the task&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: A school calendar is one thing; a team roster containing other families’ names, phone numbers, and children’s details is another. Don’t upload or share someone else’s personal information unless you have permission.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Watch your first task as it runs&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;Check the sites it visits, review the output, and stop the task if it starts doing something you didn’t expect. Once you’re comfortable with the result, you can decide whether it makes sense to run again.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Start small&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;: Pick one reminder you already recreate by hand. The Sunday school-week checklist is a good place to start – run it once, check what Copilot produces, and adjust the instructions before you schedule it. This lets you see what the task does before it becomes part of the routine. If the calendar changes, update the task or turn it off.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Happy planning!&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2026 17:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/take-back-to-school-tasks-off-your-plate-with-microsoft-copilot/ba-p/4544759</guid>
      <dc:creator>amaguire</dc:creator>
      <dc:date>2026-08-06T17:45:00Z</dc:date>
    </item>
    <item>
      <title>More control and better accessibility with permalinks in SharePoint Online</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/more-control-and-better-accessibility-with-permalinks-in/ba-p/4532713</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;As SharePoint Online has evolved, our team has heard consistent feedback from screen reader and keyboard-only users about permalinks. We’re thrilled to announce a new, upgraded experience that’s more accessible and efficient.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:278}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;A more efficient&amp;nbsp;and accessible&amp;nbsp;permalinks&amp;nbsp;experience&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:278}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;For years,&amp;nbsp;permalinks&amp;nbsp;have been a core part of the SharePoint Online page experience. From the earliest days of SharePoint, heading permalinks&amp;nbsp;have&amp;nbsp;helped users quickly copy and share direct links to specific sections within a page. Whether referencing documentation, onboarding guidance, or long-form knowledge content, permalinks make collaboration easier and navigation more precise.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Many customers&amp;nbsp;using&amp;nbsp;keyboard navigation or assistive technologies&amp;nbsp;told us that automatic permalinks on headings introduced&amp;nbsp;additional&amp;nbsp;tab stops&amp;nbsp;at every heading level on a page,&amp;nbsp;creating&amp;nbsp;extra navigation overhead.&amp;nbsp;On pages with many headings, navigating through repeated permalink controls could become inefficient and disruptive to the reading experience.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="Quote"&gt;“As we create pages in SharePoint Online,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="Quote"&gt;we’re&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="Quote"&gt;&amp;nbsp;seeing permalinks appear everywhere — and it quickly becomes overwhelming. Is there a way to reduce the noise and turn some of them off?”&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335551550&amp;quot;:2,&amp;quot;335551620&amp;quot;:2,&amp;quot;335559738&amp;quot;:160}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;The SharePoint Online team listened carefully to this feedback and worked with accessibility considerations in mind to improve the&amp;nbsp;experience,&amp;nbsp;while preserving flexibility for organizations that still want permalink functionality enabled.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;To give customers greater control, SharePoint Online is introducing a new tenant-level setting called&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;“Use permalinks.”&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;This new toggle allows organizations to choose whether heading permalinks should appear on SharePoint pages.&amp;nbsp;Administrators or site owners&amp;nbsp;can turn the feature&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;on or off&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&amp;nbsp;based on their organization’s accessibility preferences and user needs.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;Why it matters&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:278}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Accessibility is not a one-size-fits-all experience. Some organizations value heading permalinks for deep linking and knowledge sharing, while others prioritize streamlined keyboard navigation and reduced interaction complexity.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;By introducing this configurable setting, SharePoint Online enables customers to:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Reduce extra tab stops&lt;/STRONG&gt; for keyboard users.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Improve navigation efficiency&lt;/STRONG&gt; for screen reader users.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Customize page behavior&lt;/STRONG&gt; to match organizational accessibility goals.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Preserve existing permalink functionality &lt;/STRONG&gt;when needed.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;How it works&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;1. In a SharePoint Online page, locate&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Page details&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-contrast="auto"&gt;2. Toggle on or off&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt;&lt;SPAN data-contrast="auto"&gt;Use permalinks&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);" data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;When disabled, permalink navigation controls will no longer appear at each heading level, helping reduce unnecessary tab stops and creating a more streamlined experience for keyboard and screen reader users.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335559685&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;Availability&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This feature is rolling out to all SharePoint Online users with an enterprise tenant account.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:278}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;More accessibility enhancements are coming soon to SharePoint Online, so stay tuned!&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;Feedback&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Accessibility improvements are most impactful when they are informed by real-world usage and customer insights. The introduction of the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;“Use permalinks”&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;toggle is another example of how feedback from the community directly influences the SharePoint experience.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;The SharePoint Online team&amp;nbsp;remains&amp;nbsp;committed to evolving the platform in ways that empower all users to work more efficiently and inclusively.&amp;nbsp;To provide feedback on the permalinks experience, visit&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/eDAD" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Accessibility support for enterprise customers&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt;&amp;nbsp;or email eDAD@microsoft.com.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2026 15:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/more-control-and-better-accessibility-with-permalinks-in/ba-p/4532713</guid>
      <dc:creator>sharmapriya</dc:creator>
      <dc:date>2026-07-14T15:45:00Z</dc:date>
    </item>
    <item>
      <title>Co-create documents with Copilot in Word for iPad</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/co-create-documents-with-copilot-in-word-for-ipad/ba-p/4534191</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="none"&gt;We’re excited to bring a feature many of you already use on desktop, web, and&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/work-with-copilot-as-a-co%E2%80%91creator-directly-in-word-for-iphone/4507902" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;mobile &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;to Microsoft Word for iPad: the ability to collaborate with Microsoft 365 Copilot directly in your document.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;What&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;’&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;s new&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;You can now work with Copilot as a co-creator directly within your Word document on iPad, instead of having to switch between different tools and commands. Whether you’re drafting new content, refining existing text, or restructuring a document, Copilot can make edits directly in place while preserving your document formatting and structure through Word’s built-in styles.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Why it matters&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;With Copilot in Word for iPad, you can:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Turn rough ideas into polished content &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;right on the page.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Streamline edits and updates&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;by taking out much of the manual labor.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Stay in the flow&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt; of your writing&lt;/STRONG&gt; without having to navigate between tools.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;How it works&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt; Open Word on your iPad and sign in with a Copilot-enabled account.&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Create a new document or open an existing one, then select &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Edit document&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Select the &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;Copilot &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;icon to open the Copilot Chat.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Enter your request in the prompt box.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Review and apply Copilot’s suggested edits.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;DIV class="lia-embeded-content" contenteditable="false"&gt;&lt;IFRAME src="https://www.youtube.com/embed/TNRF834RkGQ?si=ZwIemkugyGlCj2Yy" width="560" height="315" title="YouTube video player" allowfullscreen="allowfullscreen" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" frameborder="0" sandbox="allow-scripts allow-same-origin allow-forms"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Tips and tricks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Be specific in your prompts. For example, instead of asking Copilot to “Update this document,” try “Update the table with figures from the September Data Pull email.”&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;To reference existing content, type “/” and search for a file, email, meeting, or other source. You can also select &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;files &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;from the source picker.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;If editing isn’t enabled, select the &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;+&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt; button in Copilot Chat and choose&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt; &lt;STRONG&gt;Allow editing&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Copilot makes changes directly in your document. You can undo changes at any time or restore a previous version of a file stored in OneDrive or SharePoint using Version History. Information about Version History is available in &lt;/SPAN&gt;&lt;A href="https://support.microsoft.com/en-US/Office/collab-files/view-previous-versions-of-office-files" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;View previous versions of Office files&lt;SPAN data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;When collaborating in a shared document, Copilot displays a preview of proposed changes before applying them. You control whether those changes are added to the document.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Copilot can only edit the currently open document and can’t create a new file.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276,&amp;quot;335559991&amp;quot;:360}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Copilot can’t generate or insert images while editing a document. To generate images in Chat, turn off editing mode, and then submit an image-generation prompt.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Copilot can’t add or edit comments. If edits are made to content associated with a comment, the comment may be removed.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276,&amp;quot;335559991&amp;quot;:360}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Copilot respects Track Changes settings. If Track Changes is turned on, edits made by Copilot will be tracked.&amp;nbsp; &lt;/SPAN&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Scenarios to try&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Here are a few prompts you can try to see how Copilot can help you create, improve, and organize content directly in Word for iPad:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Create a first draft&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;“Draft a one-page project update using the notes in this document. Include current status, key progress, risks, decisions needed, and next steps.”&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Rewrite for tone&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;“Rewrite the selected section to sound more confident, friendly, and customer-ready while keeping the meaning the same.”&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Make content easier to scan&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;“Reorganize this document with clear headings, shorter paragraphs, and an executive summary section at the top.”&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Availability&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This feature is available to users with access to Microsoft 365 Copilot and using Word for iPad&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt; Version 2.109 (Build 26051516) or later.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We’d love to hear what you think! You can share your feedback by selecting &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Help &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&amp;gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Feedback &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;in the Word app.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2026 16:21:13 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/co-create-documents-with-copilot-in-word-for-ipad/ba-p/4534191</guid>
      <dc:creator>Aditya_Mishra_29</dc:creator>
      <dc:date>2026-07-07T16:21:13Z</dc:date>
    </item>
    <item>
      <title>Leverage prompts created by your organization in Copilot</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/leverage-prompts-created-by-your-organization-in-copilot/ba-p/4533162</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We&lt;/SPAN&gt;’&lt;SPAN data-contrast="auto"&gt;re excited to share that you can now use prompts custom-made by your organization’s admins in Microsoft 365 Copilot Chat to streamline responses.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;What&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;’&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;s&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt; new&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;You now can access curated prompts that reflect your organization’s priorities, terminology, and workflows in Microsoft 365 Copilot Chat. These suggested prompts enable you to work faster and generate richer, more tailored responses.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Watch the video below to learn more:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="lia-embeded-content" contenteditable="false"&gt;&lt;IFRAME src="https://www.youtube.com/embed/Blfm5_nUYvE?si=rWnyUsbws-wNB2c3" width="560" height="315" title="YouTube video player" allowfullscreen="allowfullscreen" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" frameborder="0" sandbox="allow-scripts allow-same-origin allow-forms"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;How it works&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="11" data-list-defn-props="{&amp;quot;335552541&amp;quot;:0,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;SPAN data-contrast="auto"&gt;Open Microsoft 365 Copilot, sign in with your enterprise account, and navigate to a new chat.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276,&amp;quot;335559991&amp;quot;:360}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="11" data-list-defn-props="{&amp;quot;335552541&amp;quot;:0,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="2" data-aria-level="1"&gt;&lt;SPAN data-contrast="auto"&gt;U&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;nder the prompt box, select &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Suggested&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;to view suggested custom prompts. To view all custom prompts, select &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;More prompts&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="11" data-list-defn-props="{&amp;quot;335552541&amp;quot;:0,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="3" data-aria-level="1"&gt;&lt;SPAN data-contrast="auto"&gt;Select the prompt you need and fill in the bracketed information.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="11" data-list-defn-props="{&amp;quot;335552541&amp;quot;:0,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="3" data-aria-level="1"&gt;To search for custom prompts, type a keyword into the Search box in the Prompt Lab. You can also filter for custom prompts by selecting a topic or department on the left-hand pane.&lt;SPAN style="color: rgb(30, 30, 30);" data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276,&amp;quot;335559991&amp;quot;:360}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;img&gt;&lt;SPAN data-contrast="auto"&gt;This image reflects the Frontier experience. Experiences may differ for other users.&lt;/SPAN&gt;&lt;/img&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&lt;STRONG&gt;NOTE&lt;/STRONG&gt;:&amp;nbsp;&lt;/SPAN&gt;Prompt Lab is only available if your admin has added custom prompts to your tenant.&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;For information on creating and editing prompts as an admin, read:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/copilot/organizational-prompts" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Organizational prompts for Microsoft 365 Copilot&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276,&amp;quot;335559991&amp;quot;:0}"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Availability&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This feature is available to users with Microsoft 365 Copilot Standard and Premium licenses.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:200,&amp;quot;335559740&amp;quot;:276}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We’d love to hear what you think! To provide feedback, select the thumbs up or down buttons in Copilot.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2026 20:23:47 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/leverage-prompts-created-by-your-organization-in-copilot/ba-p/4533162</guid>
      <dc:creator>SakshiMunjal</dc:creator>
      <dc:date>2026-07-02T20:23:47Z</dc:date>
    </item>
    <item>
      <title>Admins: Migrating user data during mergers and restructurings just got easier</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/admins-migrating-user-data-during-mergers-and-restructurings/ba-p/4530703</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We’re excited to announce &lt;A class="lia-external-url" href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Fmicrosoft-365%2Fmigration%2Fmigration-orchestrator-1-overview%3Fview%3Do365-worldwide&amp;amp;data=05%7C02%7Csusan.cockrell%40microsoft.com%7Cdc7a5b1c9c6d4989691a08dedd1974e3%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639191298611045020%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=SwjUsOvYN5bGVcWNK95bxi7zFmpkxYc83KuhJxZnaYg%3D&amp;amp;reserved=0" target="_blank"&gt;cross-tenant orchestrated user data migration&lt;/A&gt;, enabling a more seamless migration experience for organizations during mergers and restructurings.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;What&lt;SPAN data-contrast="auto"&gt;’&lt;/SPAN&gt;s&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt; new&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Organizations going through mergers, acquisitions, divestitures, and internal restructuring often face a hard operational problem: How to move user data between Microsoft 365 tenants with minimal disruption to the people affected by the change.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Previously, admins had to choose between fragmented point tools, increasing risk and making troubleshooting harder. Many of you asked for a Microsoft-native, orchestrated migration experience, and we’re thrilled to deliver one!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Now, admins can create migration batches through Graph APIs and move Exchange, OneDrive, Teams chats, and Teams meetings all from one workflow. You’re able to validate all prerequisites, such as licenses, identity mapping, and permissions, before committing to a migration date. And if validation fails, you can see the exact issues and fix them before trying again. &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Users will now experience an end-to-end migration built with them in mind. After their mailbox moves, their Teams meetings will be updated so they can use them seamlessly, without needing to manually cancel and reschedule. Teams chats will be migrated and support federation to continue collaboration between the source and target tenants. This product is integrated with the same fast mailbox and OneDrive migrations that customers have used for years.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;Why it matters&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;With this update, admins can now:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Speed up data migration, especially when there’s a time crunch to move staff over to your tenant.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Reduce support ticket requests during migration.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Fix quickly and prevent organization-wide failures that bog down productivity.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;How &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;to get started&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Identify the workloads to move (e.g., mailboxes, OneDrive files and folders, Teams chats, and Teams meetings).&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Prepare tenants and users with the required configurations.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;Validate configurations using our API before migrating user data.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Known limitations&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;SPAN data-contrast="auto"&gt;This update is available in public cloud only.&lt;/SPAN&gt;&lt;SPAN aria-label="Plain text content control"&gt;&lt;SPAN data-contrast="auto"&gt;​&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;​&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Availability&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This update is available to admins with a &lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/admin/add-users/about-admin-roles?view=o365-worldwide" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Global Administrator role&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; for initial configuration, and a&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/entra/identity/role-based-access-control/permissions-reference#microsoft-365-migration-administrator" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Migration Administrator&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; or Global Admin role for later steps, with a Cross-Tenant User Data Migration add-on license per user.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We&lt;/SPAN&gt;’&lt;SPAN data-contrast="auto"&gt;d love to know what you think! To provide feedback on this experience, please fill out&amp;nbsp;&lt;A href="https://forms.cloud.microsoft/r/Gy5jMxfy1y" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;this form&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2026 18:50:12 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/admins-migrating-user-data-during-mergers-and-restructurings/ba-p/4530703</guid>
      <dc:creator>Rebecca_W_Wood</dc:creator>
      <dc:date>2026-07-08T18:50:12Z</dc:date>
    </item>
    <item>
      <title>A more efficient way to access email and meeting information with Narrator</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/a-more-efficient-way-to-access-email-and-meeting-information/ba-p/4507665</link>
      <description>&lt;P&gt;Hi, Insiders! We are Doug Geoffray and Shireen Salma, Product Managers on the Office Accessibility team. Today, we’re excited to share an improvement we’ve made to the classic and new Outlook for Windows experience for people using Narrator. You will now have faster and easier access to essential email and meeting details—such as sender, recipients, subject line, and attachments—using simple keyboard shortcuts.&lt;/P&gt;
&lt;H2&gt;Get email and meeting details faster with Narrator&lt;/H2&gt;
&lt;P&gt;Email details like who the message is from, when it was sent, or whether it includes attachments are essential for understanding context and taking action. However, if you use a screen reader, accessing this information often requires manual navigation through multiple UI elements. These elements can be time‑consuming and interrupt reading flow.&lt;/P&gt;
&lt;P&gt;With this update, we’ve introduced Narrator scripting in Outlook to streamline how you access these details, enabling you to retrieve important email and meeting information instantly using quick keyboard commands.&lt;/P&gt;
&lt;H2&gt;How it works&lt;/H2&gt;
&lt;H3&gt;In your Outlook email&lt;/H3&gt;
&lt;P&gt;With Narrator on, open an email in Outlook. To hear specific email properties announced on demand, use the following shortcut keys:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Alt + 1 – From&lt;/LI&gt;
&lt;LI&gt;Alt + 2 – Date&lt;/LI&gt;
&lt;LI&gt;Alt + 3 – To&lt;/LI&gt;
&lt;LI&gt;Alt + 4 – Cc&lt;/LI&gt;
&lt;LI&gt;Alt + 5 – Subject&lt;/LI&gt;
&lt;LI&gt;Alt + 6 – Bcc&lt;/LI&gt;
&lt;LI&gt;Alt + 7 – Attachments&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;In your Outlook calendar&lt;/H3&gt;
&lt;P&gt;With Narrator on, open a meeting from your Outlook calendar. To hear meeting details on demand, use these shortcut keys:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Alt + 1 – From&lt;/LI&gt;
&lt;LI&gt;Alt + 2 – Date&lt;/LI&gt;
&lt;LI&gt;Alt + 3 – Required attendees&lt;/LI&gt;
&lt;LI&gt;Alt + 4 – Optional attendees&lt;/LI&gt;
&lt;LI&gt;Alt + 5 – Subject&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Alt + 6 – Bcc&lt;/LI&gt;
&lt;LI&gt;Alt + 7 – Attachments&lt;/LI&gt;
&lt;LI&gt;Alt + 8 – Meeting time&lt;/LI&gt;
&lt;LI&gt;Alt + 9 – Meeting Location&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Tips and tricks&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;These shortcuts reduce unnecessary navigation and help maintain reading continuity, allowing you to quickly access the information you need without moving focus away from the message body.&lt;/LI&gt;
&lt;LI&gt;This improvement is especially helpful if you review large volumes of email or work at higher speech rates. Minimizing navigation steps can significantly improve efficiency and reduce cognitive load.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Availability&lt;/H2&gt;
&lt;P&gt;This improved Narrator experience for reading email and meeting details is available in classic Outlook for Windows for Microsoft 365 subscribers running Version 2601 (Build 19725.20126) or later of Office, Version 1.2026.529.100 of new Outlook for Windows, &lt;SPAN style="color: rgb(30, 30, 30);"&gt;and either Version 2601 (Build 28000.1764), Version 2502 (Build 26200.8116), or Version 2402 (Build 26100.8116) of Windows.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Features covered on this blog roll out over time to enable us to monitor quality and performance, so some preview features may not be available to you right away. Also note that features may be paused, adjusted, or removed as part of that process.&lt;/P&gt;
&lt;H2&gt;Feedback&lt;/H2&gt;
&lt;P&gt;We’d love to hear how this experience works for you. Try using Narrator with these new shortcuts in Outlook and let us know what you think by selecting &lt;STRONG&gt;Help &lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt; Feedback&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the&amp;nbsp;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&amp;nbsp;&lt;/A&gt;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&amp;nbsp;&lt;/A&gt;to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2026 19:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/a-more-efficient-way-to-access-email-and-meeting-information/ba-p/4507665</guid>
      <dc:creator>shireensalma</dc:creator>
      <dc:date>2026-06-29T19:45:00Z</dc:date>
    </item>
    <item>
      <title>Choosing the right AI model in Microsoft 365: flexibility, control, and confidence</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/choosing-the-right-ai-model-in-microsoft-365-flexibility-control/ba-p/4530762</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;AI innovation is moving fast, and no single model is perfect for every task. Some models excel at deep research and structured reasoning, while others are optimized for speed, summarization, or creative drafting. That’s why Microsoft 365 is evolving to support AI model choice, giving organizations more flexibility while maintaining enterprise-grade governance.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Whether you’re an IT admin setting policy, a maker building agents, or an end user working in Copilot, here’s how AI model choice works across Microsoft 365 today.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;A &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;multi-model&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt; approach, built for enterprise needs&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Microsoft 365 Copilot uses a multi-model architecture. Microsoft-hosted models remain the default for Copilot experiences, but organizations can also choose independent AI models or AI subprocessors for specific scenarios.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;This approach is intentional. Different models bring different strengths, and enterprises need the ability to match the right model to the right task without compromising security, compliance, or control.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;AI &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;subprocessors&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;: What it means for admins&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Some AI models are onboarded as Microsoft subprocessors for Microsoft Online Services. For example, &lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/copilot/connect-to-ai-subprocessor" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Anthropic models&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt; can now be used under Microsoft’s contractual framework when enabled by an admin.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Microsoft Product Terms and the Microsoft Data Protection Addendum (DPA) apply.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Admins retain centralized control over whether the model is available.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Usage aligns with Microsoft’s enterprise governance commitments and Enterprise Data Protection.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Subprocessors are contractually required to meet Microsoft security, privacy, and compliance standards.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Learn more&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/copilot/copilot-subprocessor-overview" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Overview of AI Subprocessors in Microsoft 365 Copilot&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Independent AI models: opt-in flexibility&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Microsoft 365 also supports connecting to independent AI models that are hosted outside Microsoft-managed environments. Today, this includes models from providers such as Anthropic and xAI.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Data may be processed outside Microsoft’s managed infrastructure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Provider-specific terms and data handling policies apply.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Admin approval is &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;required&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; before models become available to users or makers.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Organizations should review regional and data residency considerations before enabling these models.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Learn more&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/copilot/ai-models-overview" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Understanding AI functionality and models in Microsoft Online Services&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Admin&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt; control in the &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Microsoft 365 admin center or &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Power Platform admin center&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;For organizations building custom agents or copilots, model choice is governed centrally.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Allow or block external language models.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Control which models are available for generative responses.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Balance innovation with organizational risk tolerance.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Model choice for makers: Copilot Studio&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;In Microsoft Copilot Studio, makers can select the AI model that powers an agent’s reasoning or responses when allowed by admin policy.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Choose a primary AI model for an agent.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Switch models to compare behavior and performance.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Use external models where enabled or fall back to Microsoft-hosted defaults.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Preview and experimental models are clearly labeled and not recommended for production use.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;End-user experiences: Choosing the right model for the task&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;The Researcher agent in Microsoft 365 Copilot helps you gather, analyze, and summarize information from both the web and your work content.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;With model choice enabled, Researcher can use multiple AI models, including GPT models from OpenAI and Claude models from Anthropic, to generate research reports using different reasoning approaches.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;In Auto mode, Researcher generates a report using GPT and applies a second reasoning pass with Claude to strengthen structure and completeness, prioritize reputable sources, and ensure key statements are grounded in citations.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;For more advanced workflows, Model Council mode runs the same question through multiple deep-reasoning research agents in parallel and highlights where outputs align or diverge so users can compare perspectives and combine insights with greater confidence.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Learn more&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/copilot/microsoft-365-copilot-privacy" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Data, Privacy, and Security for Microsoft 365 Copilot&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://support.microsoft.com/en-us/office/use-model-choice-in-the-researcher-agent" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Use model choice in the Researcher agent&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://support.microsoft.com/en-US/Microsoft-365-Copilot/use-claude-with-researcher-in-microsoft-365-copilot" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Use Claude with Researcher in Microsoft 365 Copilot&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Choosing responsibly: A shared responsibility model&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Microsoft provides secure defaults, transparency, and enterprise controls.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Admins decide which models are allowed and where.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Makers and users select &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;models intentionally&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt; based on the task at hand.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="List Bullet"&gt;Existing Microsoft 365 security, compliance, and permission controls continue to apply when using Copilot experiences.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Privacy, security, and compliance considerations&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Microsoft 365 Copilot is compliant with existing Microsoft 365 privacy, security, and compliance commitments. Prompts, responses, and Microsoft Graph grounding data are not used to train foundation large language models used by Microsoft 365 Copilot. Organizations should also review regional data residency guidance, including EU Data Boundary considerations, when enabling AI subprocessors.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Learn more&lt;/STRONG&gt;: &lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/copilot/enterprise-data-protection" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Enterprise data protection in Microsoft 365 Copilot and Microsoft 365 Copilot Chat&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-props="{}"&gt;&lt;A href="https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA?lang=18&amp;amp;msockid=344e0e6ad66c6b3e19441848d7416abd" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Licensing Documents&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:200,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;AI model choice in Microsoft 365 is evolving, and your input helps shape what comes next. Whether you’re an IT admin thinking about governance, a maker experimenting with agents, or an end user trying different Copilot experiences, we want to hear what’s working and what isn’t.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Share your thoughts, questions, or scenarios in the comments below. Your feedback helps inform future updates, documentation, and product decisions as Microsoft continues to expand AI model choice across Microsoft 365.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 17:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/choosing-the-right-ai-model-in-microsoft-365-flexibility-control/ba-p/4530762</guid>
      <dc:creator>KwekuMSFT</dc:creator>
      <dc:date>2026-06-25T17:45:00Z</dc:date>
    </item>
    <item>
      <title>Stay in sync in PowerPoint Live</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/stay-in-sync-in-powerpoint-live/ba-p/4529908</link>
      <description>&lt;P&gt;The Explain and Refresh features in PowerPoint Live help presenters and audiences stay aligned during live presentations. The Explain feature lets participants select slide content to quickly understand unfamiliar terms, while the Refresh feature lets presenters update to the latest version of their deck quickly, without stopping the presentation or resharing it.&lt;/P&gt;
&lt;H2&gt;Present with confidence. Participate with clarity.&lt;/H2&gt;
&lt;P&gt;As a presenter - Let’s say you’re 15 minutes into presenting the quarterly deck when a teammate pings you: the revenue number on slide 12 is outdated, and they’ve just uploaded a corrected version. With the Refresh feature, a single click reloads the latest version of your deck without ever leaving the session. You stay on the same slide, the meeting continues smoothly, and everyone sees the updated content immediately. No resharing. No disruption. No lost momentum.&lt;BR /&gt;&lt;BR /&gt;As an attendee – Imagine you’re in a cross-functional review and a slide includes an acronym you’ve never seen before. Previously, you had two choices: interrupt the presenter and break the flow, or stay quiet and miss part of the discussion while trying to figure it out yourself. With the Explain feature, you can select the term directly on the slide and instantly get more context with Copilot, without disrupting the meeting or drawing attention. You stay informed, confident, and engaged in the conversation.&lt;/P&gt;
&lt;H2&gt;How it works&lt;/H2&gt;
&lt;P&gt;To use the Refresh feature:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Start presenting your PowerPoint deck with PowerPoint Live in your Teams meeting.&lt;/LI&gt;
&lt;LI&gt;Click the &lt;STRONG&gt;Refresh&lt;/STRONG&gt; button (2 circular arrows) to reload the latest version of your deck. &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI&gt;To confirm that the latest version is now available, look for the “You’re presenting the latest version” message in the bottom-left corner. &lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To use the Explain feature:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Start viewing a PowerPoint Live presentation as an attendee in a Teams meeting.&lt;/LI&gt;
&lt;LI&gt;Click the &lt;STRONG&gt;Select and drag text to ask Copilot&lt;/STRONG&gt; button (dashed square with 2 sparkle icons), select the content you want explained, and then select&amp;nbsp;&lt;STRONG&gt;Explain selected text&lt;/STRONG&gt; from the button that appears above your selection. &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI&gt;In the Copilot pane, review the explanation generated based on the text you selected.&lt;/LI&gt;
&lt;/OL&gt;
&lt;img /&gt;
&lt;H2&gt;Known limitations&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;The Explain feature works best with text-based content. Charts and complex visuals (such as graphs or diagrams) may not be accurately interpreted.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Requirements&lt;/H2&gt;
&lt;P&gt;To use the Explain feature, you need:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;A Microsoft 365 subscription&lt;/LI&gt;
&lt;LI&gt;A Microsoft 365 Copilot license&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To use the Refresh feature, you need:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;A Microsoft 365 subscription&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Availability&lt;/H2&gt;
&lt;P&gt;These features are available to all PowerPoint for Windows and PowerPoint for Mac users.&lt;/P&gt;
&lt;H2&gt;Feedback&lt;/H2&gt;
&lt;P&gt;To submit feedback about the Explain feature:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;After Copilot generates a response, select the thumbs up or thumbs down icons directly below the response.&lt;/LI&gt;
&lt;LI&gt;If Copilot shows an error, select the Give feedback button beneath the error message.&lt;/LI&gt;
&lt;LI&gt;In the Copilot chat pane, select the three dots (...) in the top-right corner, then select Send feedback.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;To submit feedback about the Refresh feature:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Select the three dots (...) in the top-right corner of the Teams meeting window.&lt;/LI&gt;
&lt;LI&gt;Select Report a problem from the menu.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Wed, 24 Jun 2026 15:45:42 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/stay-in-sync-in-powerpoint-live/ba-p/4529908</guid>
      <dc:creator>rachelledong</dc:creator>
      <dc:date>2026-06-24T15:45:42Z</dc:date>
    </item>
    <item>
      <title>Test your audio before joining a Teams meeting</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/test-your-audio-before-joining-a-teams-meeting/ba-p/4529848</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="none"&gt;We’re excited to announce the rollout of Test mic and speaker in Microsoft Teams — a new, pre-join experience designed to help you confirm your audio setup before entering a meeting.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;What’s&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;&amp;nbsp;new&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;With this release,&amp;nbsp;you&amp;nbsp;can now&amp;nbsp;test&amp;nbsp;your microphone and speakers directly from the pre-join screen. The feature provides a simple, guided flow to ensure devices are working as expected before joining the call.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;The experience includes:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Speaker test&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;:&amp;nbsp;plays an audio tone to confirm sound is coming through the selected device&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="2" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Microphone&amp;nbsp;test&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;:&amp;nbsp;records a short sample and plays it back so&amp;nbsp;you&amp;nbsp;can verify&amp;nbsp;you&amp;nbsp;can be heard&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="3" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Summary view&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;: confirms whether both devices are functioning correctly&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This flow is launched via a&amp;nbsp;button on the pre-join screen, making it easy to access&amp;nbsp;at the moment&amp;nbsp;you&amp;nbsp;need it most&amp;nbsp;and enabling you to&amp;nbsp;validate&amp;nbsp;everything in one place.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Why&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;this matters&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Audio issues&amp;nbsp;remain&amp;nbsp;one of the most common pain points in online meetings.&amp;nbsp;Testing devices ahead of time helps avoid interruptions and improves overall meeting quality.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This feature is designed to:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="5" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Reduce in-meeting troubleshooting&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;by catching issues early&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="5" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="2" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Improve confidence before joining&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;, especially for&amp;nbsp;new users&amp;nbsp;or complex device setups&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI aria-setsize="-1" data-leveltext="" data-font="Symbol" data-listid="5" data-list-defn-props="{&amp;quot;335552541&amp;quot;:1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769226&amp;quot;:&amp;quot;Symbol&amp;quot;,&amp;quot;469769242&amp;quot;:[8226],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="3" data-aria-level="1"&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Minimize one-way audio scenarios&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;, a key driver of poor meeting experiences&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;How it works&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Select a&amp;nbsp;meeting to join, and&amp;nbsp;you’ll&amp;nbsp;enter&amp;nbsp;the pre-join screen.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Select&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;Test&amp;nbsp;mic&amp;nbsp;and&amp;nbsp;speaker&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;under&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Computer&amp;nbsp;audio&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;.&lt;/SPAN&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI&gt;Follow the guided steps to check audio output and input.&lt;SPAN style="color: rgb(30, 30, 30);" data-ccp-props="{&amp;quot;134233118&amp;quot;:false,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Availability&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;The Test mic and speaker feature&amp;nbsp;is rolling out to users&amp;nbsp;across desktop experiences, with&amp;nbsp;additional&amp;nbsp;platform support following.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Looking ahead&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This release is part of our broader investment in audio/video reliability and meeting readiness. By helping users resolve issues before they join,&amp;nbsp;we’re&amp;nbsp;making meetings more predictable, efficient, and frustration-free.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Your feedback helps us continue improving meetings for everyone! Share your thoughts and your experience by selecting &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Help&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Give feedback&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 15:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/test-your-audio-before-joining-a-teams-meeting/ba-p/4529848</guid>
      <dc:creator>KatarinaTranker</dc:creator>
      <dc:date>2026-06-23T15:45:00Z</dc:date>
    </item>
    <item>
      <title>Celebrate Pride Month with a special theme for Mac and iOS</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/celebrate-pride-month-with-a-special-theme-for-mac-and-ios/ba-p/4529170</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Hello, Microsoft 365 Insiders! I’m Hugo Garcia, a Product Manager on the Apple Experiences team. I’m thrilled to announce the return of our special Pride Month theme in Microsoft Outlook, Word, Excel, PowerPoint, and OneNote for Mac and for iOS.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Show your Pride with rainbow accents&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;201341983&amp;quot;:0,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335559685&amp;quot;:0,&amp;quot;335559737&amp;quot;:0,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80,&amp;quot;335559740&amp;quot;:279}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;At its heart, Pride has always been about community. It’s the chosen family who celebrate us, and the simple, powerful act of being seen. And this year’s Pride isn’t just about showing up. It’s about choosing to live openly, visibly, and fully, and gathering with the people who make that possible. Pride endures, because you do.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;The “Show Your Pride” theme is one small way to bring that spirit into the apps you open every day. When the rainbow accents show up in your inbox or across a document&amp;nbsp;you’re&amp;nbsp;working on,&amp;nbsp;it’s&amp;nbsp;a reminder that you belong, that&amp;nbsp;you’re&amp;nbsp;part of something bigger, and of the vibrant community that supports each other.&amp;nbsp;It’s&amp;nbsp;a warm way to carry that visibility with you, wherever the day takes you.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;How it works&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;H3 aria-level="3"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 3"&gt;On Mac&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="Aptos" data-listid="1" data-list-defn-props="{&amp;quot;335551671&amp;quot;:1,&amp;quot;335552541&amp;quot;:0,&amp;quot;335559683&amp;quot;:0,&amp;quot;335559684&amp;quot;:-1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0,46],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;To set the theme in Outlook, open the app on your Mac device, then select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Settings&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;General&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;and pick your preferred Pride theme under&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Theme&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;.&lt;/SPAN&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&amp;quot;335551671&amp;quot;:2,&amp;quot;335552541&amp;quot;:0,&amp;quot;335559683&amp;quot;:0,&amp;quot;335559684&amp;quot;:-1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0,46],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="2" data-aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;To set the theme in Word, Excel, PowerPoint, and OneNote, open the app on your Mac device, then select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Preferences&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Show Your Pride&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;You’ll notice rainbow accents throughout the app! &lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P class="lia-clear-both"&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;H3&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 3"&gt;On iOS&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 3"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="Aptos" data-listid="3" data-list-defn-props="{&amp;quot;335551671&amp;quot;:1,&amp;quot;335552541&amp;quot;:0,&amp;quot;335559683&amp;quot;:0,&amp;quot;335559684&amp;quot;:-1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0,46],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="1" data-aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;To set the theme in Outlook, open the app on your iPhone or iPad, then select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Home&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Settings&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Appearance&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;and pick your preferred Pride theme.&lt;/SPAN&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;LI aria-setsize="-1" data-leveltext="%1." data-font="Aptos" data-listid="4" data-list-defn-props="{&amp;quot;335551671&amp;quot;:2,&amp;quot;335552541&amp;quot;:0,&amp;quot;335559683&amp;quot;:0,&amp;quot;335559684&amp;quot;:-1,&amp;quot;335559685&amp;quot;:720,&amp;quot;335559991&amp;quot;:360,&amp;quot;469769242&amp;quot;:[65533,0,46],&amp;quot;469777803&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;469777804&amp;quot;:&amp;quot;%1.&amp;quot;,&amp;quot;469777815&amp;quot;:&amp;quot;hybridMultilevel&amp;quot;}" data-aria-posinset="2" data-aria-level="1"&gt;&lt;SPAN data-contrast="none"&gt;To set the theme in Word, Excel, PowerPoint, or OneNote, open the app on your iPhone or iPad, select your profile photo, and then select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Settings&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Show Your Pride&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Enjoy the animated home screen and colorful accents in your favorite apps!&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Get more involved with Pride&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Be sure to check out the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.microsoft.com/pride" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft Pride&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;page to learn more about the many other ways&amp;nbsp;you can keep Pride alive with us, from open-source design assets on&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/PrideFigma" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Figma&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/microsoft/Pride" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;GitHub&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;to new wallpapers, Teams backgrounds, and inspiring employee stories.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;For more than three decades, Microsoft and its employees have supported LGBTQIA+ communities, contributing more than $37 million to nonprofit organizations worldwide.&amp;nbsp;We’re&amp;nbsp;proud to keep contributing to a more inclusive future for all.&amp;nbsp;&lt;/SPAN&gt; &lt;SPAN data-contrast="none"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Availability&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This feature is available to all Mac and iOS users in select markets.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;We want to hear from you! If you have feedback or suggestions, please let us know. On your Mac device, you can use the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Send us a Smile&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;🙂&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;or&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Send&amp;nbsp;us a Frown&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;☹&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;buttons in the top-right corner of the app. On your iOS device, you can select your profile photo, then&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Help &amp;amp; Feedback&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Tell Us What You Like&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;or&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Tell Us What Can Be Better&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:0,&amp;quot;335551620&amp;quot;:0,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt; to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2026 15:41:38 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/celebrate-pride-month-with-a-special-theme-for-mac-and-ios/ba-p/4529170</guid>
      <dc:creator>amaguire</dc:creator>
      <dc:date>2026-06-18T15:41:38Z</dc:date>
    </item>
    <item>
      <title>Microsoft 365 Copilot app learning series: From research to polished outputs</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/microsoft-365-copilot-app-learning-series-from-research-to/ba-p/4527906</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Work today often spans chats, files, meetings, and tools. Our latest Microsoft 365 Copilot app learning series explores how connected experiences like Researcher, Copilot Pages, Copilot Notebooks, and Create can support workflows that move work from research and planning to collaboration and content creation.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Across the series,&amp;nbsp;you’ll&amp;nbsp;see practical scenarios for organizing information, building shared context, creating content, and turning ideas into shareable outputs.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Here’s what we will cover:&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;Researcher agent: Generate structured, source cited reports&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Researcher&amp;nbsp;in the Microsoft 365 Copilot app&amp;nbsp;is&amp;nbsp;designed to help with multi-step research tasks using web information and the work content you already have access to, such as files, emails, meetings, and chats.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;In this session,&amp;nbsp;you’ll&amp;nbsp;learn how to:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Start with a research question and refine the scope&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Build structured reports with cited sources&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Adjust research direction to stay focused on your scenario&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Review summaries, visuals, and references before sharing results&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Export or adapt content into formats such as Word, PowerPoint, or PDF, when available&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This session is especially useful for market research, competitive analysis, planning, and stakeholder preparation where source visibility and review are important.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Presenters&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:camekala@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Carl Mekala&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:ledani@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Leo Daniel Gnanamanickam&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://aka.ms/M365CopilotAppSeries/S2E1" target="_blank" rel="noopener"&gt;Watch video.&lt;/A&gt;&lt;/P&gt;
&lt;DIV class="lia-embeded-content" contenteditable="false"&gt;&lt;IFRAME src="https://www.youtube.com/embed/d1ngR1TmPAo?si=-LwlKWIR7qbj8Yxy" width="560" height="315" title="YouTube video player" allowfullscreen="allowfullscreen" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" frameborder="0" sandbox="allow-scripts allow-same-origin allow-forms"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;H2&gt;Copilot Pages: Turn chat responses into editable, shareable content&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Copilot Pages helps you take a Copilot response and turn it into content you can edit, refine, and&amp;nbsp;collaborate on&amp;nbsp;with others.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;In this session,&amp;nbsp;you’ll&amp;nbsp;learn how to:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Generate a structured draft from Copilot Chat&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Continue working in a Copilot Page&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Revise, expand, or reformat content using Copilot&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Tailor content for different audiences and use cases&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Share Pages for real-time collaboration across Teams, Outlook, or the Microsoft 365 app, depending on availability&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This session is useful for brainstorming and content drafting, where teams need to turn ideas into shared, polished outputs.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Presenters&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:corachen@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Cora Chen&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:florenceomu@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Oby Omu&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://aka.ms/M365CopilotAppSeries/S2E2" target="_blank" rel="noopener"&gt;Watch video.&lt;/A&gt;&lt;/P&gt;
&lt;DIV class="lia-embeded-content" contenteditable="false"&gt;&lt;IFRAME src="https://www.youtube.com/embed/ci3_7u-zlvU?si=XChOzKGrU9hBwGcy" width="560" height="315" title="YouTube video player" allowfullscreen="allowfullscreen" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" frameborder="0" sandbox="allow-scripts allow-same-origin allow-forms"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;H2&gt;Copilot Notebooks: Organize project materials and get insights&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Copilot Notebooks is designed to provide a focused workspace where you can bring together project materials such as files, notes, Pages, and other references to keep work grounded in the context you choose.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;In this session,&amp;nbsp;you’ll&amp;nbsp;learn how to:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Bring project references into one organized workspace&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Use Notebook overviews to&amp;nbsp;identify&amp;nbsp;themes and insights&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Guide responses with custom instructions&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Ask questions grounded in your selected references&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Generate supporting materials such as summaries or audio overviews, when available&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Collaborate while managing sharing and permissions settings&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This session is especially helpful for ongoing projects that involve multiple content sources, project planning,&amp;nbsp;and cross-team collaboration.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Presenters&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:mmadangarli@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Medha Madangarli&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:derekliddell@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Derek Liddell&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://aka.ms/M365CopilotAppSeries/S2E3" target="_blank" rel="noopener"&gt;Watch video.&lt;/A&gt;&lt;/P&gt;
&lt;DIV class="lia-embeded-content" contenteditable="false"&gt;&lt;IFRAME src="https://www.youtube.com/embed/LzOahTl6MF0?si=V7tpvTeV8IgddD2b" width="560" height="315" title="YouTube video player" allowfullscreen="allowfullscreen" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" frameborder="0" sandbox="allow-scripts allow-same-origin allow-forms"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;H2&gt;Create: Turn ideas into branded visuals&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Create can be used to generate visual assets and creative content from prompts, project context, and available brand resources.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;In this session,&amp;nbsp;you’ll&amp;nbsp;learn how to:&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Generate visual concepts from prompts&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Apply&amp;nbsp;brand&amp;nbsp;kits and brand elements, when available&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Create social-ready assets such as carousel posts&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Turn presentations into short videos or other shareable formats, when available&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN data-contrast="none"&gt;Refine outputs so they better align to your audience, message, and brand guidance&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;This session is useful for teams exploring practical ways to create shareable&amp;nbsp;visual content while keeping brand alignment part of the process.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Presenters&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:ludoulrich@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Ludo Ulrich&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and&lt;/SPAN&gt;&amp;nbsp;&lt;A href="mailto:raycuriel@microsoft.com" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Ray Curiel&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:160}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://aka.ms/M365CopilotAppSeries/S2E4" target="_blank" rel="noopener"&gt;Watch video.&lt;/A&gt;&lt;/P&gt;
&lt;DIV class="lia-embeded-content" contenteditable="false"&gt;&lt;IFRAME src="https://www.youtube.com/embed/WYOXy4AuXIM?si=43GuD9OLo3UBZkDg" width="560" height="315" title="YouTube video player" allowfullscreen="allowfullscreen" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" frameborder="0" sandbox="allow-scripts allow-same-origin allow-forms"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;H2 aria-level="2"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;Keep learning&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Have questions after watching the series? Join us on Tuesday, June 30, for a live Ask Microsoft Anything (AMA) with product experts focused on real-world scenarios, product tips, and questions from the community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Whether&amp;nbsp;you’re&amp;nbsp;getting&amp;nbsp;started or exploring advanced workflows, the AMA is a chance to hear practical guidance and learn how others are using Microsoft 365 Copilot app experiences in their everyday work.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://aka.ms/M365CopilotAppSeries/S2AMA" target="_blank" rel="noopener"&gt;Register here.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt; to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2026 15:56:14 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/microsoft-365-copilot-app-learning-series-from-research-to/ba-p/4527906</guid>
      <dc:creator>obyomu</dc:creator>
      <dc:date>2026-06-17T15:56:14Z</dc:date>
    </item>
    <item>
      <title>Stay productive in new Outlook for Windows with these 5 features</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/stay-productive-in-new-outlook-for-windows-with-these-5-features/ba-p/4525647</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="none"&gt;With the new Outlook for Windows, there are more ways than ever to stay organized, reduce everyday friction, and keep work moving across Mail, Calendar, meetings, and settings.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;To help you make the transition from classic&amp;nbsp;Outlook and explore new capabilities,&amp;nbsp;we’ve&amp;nbsp;compiled some of our favorite features for boosting productivity.&amp;nbsp;(You can see&amp;nbsp;even more little-known features&amp;nbsp;in our Outlook blog:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/outlook/15-productivity-features-in-the-new-outlook-for-windows/4522796" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;15 productivity features in the new Outlook for Windows&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;.)&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;1. Pin and snooze emails&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;The Pin feature allows you to select&amp;nbsp;an&amp;nbsp;email to always appear at the top of your inbox&amp;nbsp;–&amp;nbsp;useful for items you need to reference often or&amp;nbsp;don’t&amp;nbsp;want to lose track of.&amp;nbsp;Just hover over a message and select the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Pin&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;button on the right.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Conversely, you can snooze an email from your inbox and have it reappear at a time you’d prefer to read it by right-clicking on the message, then selecting&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="none"&gt;Snooze&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="none"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;and choosing a&amp;nbsp;date and time.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;2. Automatically organize messages from a specific&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;sender&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;With Sweep, you can create automatic actions for messages from a specific sender. For example, you can&amp;nbsp;delete&amp;nbsp;promotional mail after a set period, reducing manual&amp;nbsp;cleanup&amp;nbsp;and keeping your inbox focused on the tasks that matter. To use Sweep, select the &lt;STRONG&gt;broom &lt;/STRONG&gt;icon on the ribbon, then select your desired rule.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;3. Schedule emails to send later&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Schedule Send lets you prepare messages whenever you want and send them at a time that works better for the recipient. No more leaving messages in&amp;nbsp;Drafts&amp;nbsp;indefinitely!&amp;nbsp;To schedule an email, select the dropdown arrow next to the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Send&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;button, then select&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&lt;STRONG&gt;Schedule&amp;nbsp;send&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;and choose a date and time.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;4. Stay informed on meetings you&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;don’t &lt;/SPAN&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;attend&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134245418&amp;quot;:true,&amp;quot;134245529&amp;quot;:true,&amp;quot;335559738&amp;quot;:160,&amp;quot;335559739&amp;quot;:80}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;When you select Follow on a meeting, you get access to the meeting recap without having to attend. This can be useful if you have a conflict but need to know what was discussed or want to contribute to a brainstorm.&amp;nbsp;Follow a meeting by selecting&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Follow&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;when RSVPing to the invite.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;H2&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-parastyle="heading 2"&gt;5. Personalize your email accounts&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Make your various inboxes more recognizable by&amp;nbsp;assigning each&amp;nbsp;one&amp;nbsp;a custom name. You can rename accounts by selecting&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN data-contrast="auto"&gt;Settings&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-contrast="auto"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&amp;nbsp;&lt;STRONG&gt;Accounts&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&amp;nbsp;&lt;STRONG&gt;Manage&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Your&amp;nbsp;inbox&amp;nbsp;just got a&amp;nbsp;whole lot more manageable!&amp;nbsp;Which feature will you try first?&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;Learn more&amp;nbsp;tips and tricks:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/blog/outlook/15-productivity-features-in-the-new-outlook-for-windows/4522796" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;15 productivity features in the new Outlook for Windows&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="auto"&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Learn about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider program&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;&lt;SPAN data-contrast="none"&gt;&lt;SPAN data-ccp-charstyle="Hyperlink"&gt;Microsoft 365 Insider newsletter&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN data-contrast="none"&gt; to get the latest information about Insider features in your inbox once a month!&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559739&amp;quot;:0}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2026 15:44:26 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/stay-productive-in-new-outlook-for-windows-with-these-5-features/ba-p/4525647</guid>
      <dc:creator>Vicki_Milton</dc:creator>
      <dc:date>2026-06-05T15:44:26Z</dc:date>
    </item>
    <item>
      <title>From LaTeX to accessible PDFs: Transforming math workflows in Microsoft 365</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/from-latex-to-accessible-pdfs-transforming-math-workflows-in/ba-p/4523506</link>
      <description>&lt;P&gt;Congratulations, Class of 2026! It's an exciting time looking forward to the next step in your journey. The rest of us salute you as we continue with our own journeys. For so many of us, math has been an integral part of the journey, enabling us to understand, solve, and build &lt;SPAN data-contrast="none"&gt;–&lt;/SPAN&gt; which is why I'm very excited to share improved support for industry standard math formats in Microsoft 365 that make it easier to communicate inclusively with math.&lt;/P&gt;
&lt;H2&gt;Improved LaTeX support&lt;/H2&gt;
&lt;P&gt;LaTeX users, we heard you! You use LaTeX for your publications, Word for your documents, and PowerPoint for your presentations, and you need them to work well &lt;EM&gt;together&lt;/EM&gt;. But it hasn’t been so easy since the LaTeX support in Word and PowerPoint didn’t handle all the complex math that you write.&lt;/P&gt;
&lt;P&gt;With the latest version of Microsoft 365 in Beta Channel, LaTeX support is much more robust, making it easier than ever to bring your LaTeX into Word, PowerPoint, Excel, and OneNote. Rebuilt from the ground up, it supports more of the commands that you use. You can even include user-defined macros using \newcommand, \renewcommand, and \def in your equations.&lt;/P&gt;
&lt;H3&gt;How it works&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Select the LaTeX expression including the \begin{environment}…\end{environment}, \[…\], \(…\), $$....$$, or $...$ delimiters from your TeX document or Markdown and copy it to the clipboard by typing &lt;STRONG&gt;Ctrl &lt;/STRONG&gt;+ &lt;STRONG&gt;C&lt;/STRONG&gt; (on Windows) or &lt;STRONG&gt;Command&lt;/STRONG&gt; + &lt;STRONG&gt;C&lt;/STRONG&gt; (on Mac).&lt;img&gt;Selecting and copying LaTeX from a TeX document.&lt;/img&gt;&lt;/LI&gt;
&lt;LI&gt;Open a new or existing file in Word, PowerPoint, or OneNote, then type &lt;STRONG&gt;Ctrl&lt;/STRONG&gt; + &lt;STRONG&gt;V&lt;/STRONG&gt; (on Windows) or &lt;STRONG&gt;Command &lt;/STRONG&gt;+ &lt;STRONG&gt;V&lt;/STRONG&gt; (on Mac) to paste the LaTeX expression as native Office Math. In Excel, you can paste the text into a shape or SmartArt.&lt;img&gt;Pasting delimited LaTeX into PowerPoint inserts native Office Math.&lt;/img&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;The LaTeX is automatically converted to native Office Math.&lt;/P&gt;
&lt;H3&gt;Tips and tricks&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;If the pasted text doesn’t include the delimiters, you can still easily convert it to native Office Math after pasting, by selecting the text and then selecting &lt;STRONG&gt;Insert&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Equation&lt;/STRONG&gt; while in LaTeX mode in Word, PowerPoint, and Excel. And you can still convert native Office Math back to LaTeX if you need to edit it.&lt;/LI&gt;
&lt;LI&gt;We heard that many of you write chemical formulas and equations in LaTeX, so we have added&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/office/math/latex.mhchem" target="_blank" rel="noopener"&gt;support for the \ce command from the mhchem package&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;img&gt;Copying delimited LaTeX using \ce and pasting into Word inserts a chemical formula.&lt;/img&gt;
&lt;UL&gt;
&lt;LI&gt;We have published&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/office/math/latex" target="_blank" rel="noopener"&gt;documentation for LaTeX support in Microsoft 365&lt;/A&gt; to help you determine if you can use it for your content and integrate it into your workflow.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To the amazing LaTeX community: Thank you for building an incredible collection of content on the web and advancing science and human knowledge. I'm excited to see what you will do with Microsoft 365.&lt;/P&gt;
&lt;H2&gt;Great compatibility with MathML Core&lt;/H2&gt;
&lt;P&gt;&lt;A href="https://www.w3.org/TR/mathml-core/" target="_blank" rel="noopener"&gt;MathML Core&lt;/A&gt; brings math to life on the web! With excellent support in all major web browsers, it's widely used in sites such as&amp;nbsp;&lt;A href="https://arxiv.org/" target="_blank" rel="noopener"&gt;arXiv&lt;/A&gt; for math that's accessible and looks great.&lt;/P&gt;
&lt;P&gt;In the latest version of Microsoft 365 in Beta Channel: Word, PowerPoint, OneNote, and Excel provide MathML Core on the clipboard, in the accessibility tree used by assistive technologies, in PDF, and in Open Document Format.&lt;/P&gt;
&lt;P&gt;The Microsoft 365 apps continue to import MathML 3 well and then export it as MathML Core without &amp;lt;mfenced&amp;gt;, &amp;lt;maligngroup&amp;gt;, or &amp;lt;malignmark&amp;gt; elements and without mathvariant attribute values other than normal which have been dropped from MathML Core. This ensures compatibility with the web, assistive technologies, and other apps. One exception to be aware of is that the &amp;lt;menclose&amp;gt; element may be used.&lt;/P&gt;
&lt;img&gt;MathML copied from Word, PowerPoint, OneNote, or Excel has been pasted into the HTML source for a webpage and it renders well in web browsers such as Firefox.&lt;/img&gt;
&lt;P&gt;We have published&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/office/math/mathml" target="_blank" rel="noopener"&gt;documentation for MathML support in Microsoft 365&lt;/A&gt; to help you assess compatibility with the other apps that you use.&lt;/P&gt;
&lt;H2&gt;PDF 2.0 standard format for math&lt;/H2&gt;
&lt;P&gt;Many publications are in PDF format, but unfortunately the PDFs are often inaccessible. You can help change that by using native Office Math in Word and PowerPoint and exporting PDFs using the built-in Export or Save As command! Word and PowerPoint are &lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/create-accessible-pdfs-with-microsoft-365-apps/4226301" target="_blank" rel="noopener"&gt;excellent at preserving accessibility of documents and presentations when exporting as PDF&lt;/A&gt;, and the latest version of the apps for Windows in Beta Channel builds upon this with great math accessibility. Now &lt;A href="https://pdfa.org/accessible-math-in-pdf-finally/" target="_blank" rel="noopener"&gt;MathML is included in the PDF as associated files as specified in the PDF 2.0 standard&lt;/A&gt;. This allows people who rely on a screen reader to easily navigate and read the math in PDF viewers that support the format such as Firefox with JAWS, NVDA with MathCAT, or VoiceOver. While not all PDF viewers read the new standard format and not all assistive technologies provide a math navigation experience yet, support will expand in the future &lt;SPAN data-contrast="none"&gt;–&lt;/SPAN&gt; and the support in Word and PowerPoint will increase the momentum.&lt;/P&gt;
&lt;H3&gt;How it works&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Open a new or existing file in Word or PowerPoint for Windows.&lt;/LI&gt;
&lt;LI&gt;Select &lt;STRONG&gt;File&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Save&lt;/STRONG&gt; or &lt;STRONG&gt;Save a Copy&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;More options...&lt;/STRONG&gt; and select &lt;STRONG&gt;PDF (*.pdf)&lt;/STRONG&gt; from the list of format.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;Tips and tricks&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;You can also select &lt;STRONG&gt;File &lt;/STRONG&gt;&amp;gt; &lt;STRONG&gt;Export &lt;/STRONG&gt;&amp;gt; &lt;STRONG&gt;Create PDF/XPS Document&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Create PDF/XPS&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Depending on what you have installed, additional commands from add-ins may appear in the File and Export menus. Use the commands listed above to use the built-in PDF export.&lt;/LI&gt;
&lt;LI&gt;Support for exporting PDF with math in the new format is coming soon to Word and PowerPoint for Mac, iOS, and Android and to Word for the web. It is currently available in Word and PowerPoint for Windows in Beta Channel and PowerPoint for the web.&lt;/LI&gt;
&lt;/UL&gt;
&lt;img&gt;PDF exported from PowerPoint viewed in Firefox and read with JAWS Math Viewer.&lt;/img&gt;
&lt;H2&gt;A community effort&lt;/H2&gt;
&lt;P&gt;&lt;A href="https://www.linkedin.com/in/george-kerscher-45a5369/" target="_blank" rel="noopener"&gt;George Kersher&lt;/A&gt;, &lt;A href="https://www.linkedin.com/in/sara-shunkwiler/" target="_blank" rel="noopener"&gt;Sara Shunkwiler&lt;/A&gt;, &lt;A href="https://www.linkedin.com/in/ways2read/" target="_blank" rel="noopener"&gt;Richard Orme&lt;/A&gt;, and &lt;A href="https://www.linkedin.com/in/peter-wu-b458864/" target="_blank" rel="noopener"&gt;I&lt;/A&gt; recently presented &lt;A href="https://www.youtube.com/watch?v=y8Lzj01lkGg" target="_blank" rel="noopener"&gt;Accessible Math Unlocks STEM Education and Careers&lt;/A&gt; at the Microsoft Ability Summit 2026. You can download the materials from &lt;A href="https://daisy.org/ability26" target="_blank" rel="noopener"&gt;daisy.org/ability26&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;To learn more about the man who built much of accessible math in Microsoft 365 over the course of many years, read our blog post:&amp;nbsp;&lt;A href="https://techcommunity.microsoft.com/blog/microsoft365insiderblog/meet-murray-sargent-the-quiet-force-behind-accessible-math/4517889" target="_blank" rel="noopener"&gt;Meet Murray Sargent, the quiet force behind accessible math&lt;/A&gt; (who was recently awarded the Microsoft Accessibility Lifetime Achievement Award).&lt;/P&gt;
&lt;P&gt;Professor Jeffrey Kuan at Ohio State University shared one of his research papers as a Word document attached below to help you see what you can do with accessible math in Microsoft 365.&lt;/P&gt;
&lt;H2&gt;Availability&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Improved LaTeX support and MathML Core support are available in Word, PowerPoint, OneNote, and Excel for Windows in Version 2606 (Build 20105.20000) or later and in Word, PowerPoint, OneNote, and Excel for Mac in Version 16.110 (Build 26050500) or later in Beta Channel.&lt;/LI&gt;
&lt;LI&gt;Accessibility of exported PDFs with math in the ISO-standarized PDF 2.0 file format is available in Word and PowerPoint for Windows in Version 2605 (Build 20018.20000) or later in Beta Channel and in PowerPoint for the web.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN data-contrast="none"&gt;Features covered on this blog will &lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;roll&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;out&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;over time to enable us to&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;monitor&lt;/SPAN&gt;&lt;SPAN data-contrast="none"&gt;&amp;nbsp;quality and performance, so some preview features may not be available to you right away. Also note that features may be paused, adjusted, or removed as part of that process.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;134233117&amp;quot;:false,&amp;quot;134233118&amp;quot;:false,&amp;quot;335551550&amp;quot;:1,&amp;quot;335551620&amp;quot;:1,&amp;quot;335557856&amp;quot;:16777215,&amp;quot;335559738&amp;quot;:0,&amp;quot;335559739&amp;quot;:150}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;Feedback&lt;/H2&gt;
&lt;P&gt;Please click&amp;nbsp;&lt;STRONG&gt;Help&lt;/STRONG&gt;&amp;nbsp;&amp;gt;&amp;nbsp;&lt;STRONG&gt;Feedback&lt;/STRONG&gt; in the app you are using to submit your thoughts about these features. We would love to hear from you! You can help spread the word about how important it is to make math accessible by sharing this post with your networks and tag it with #Microsoft365Math.&lt;/P&gt;
&lt;P&gt;We’re thrilled by the feedback we’ve received from customers about recent math enhancements to Microsoft 365:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;From Brydon Bacaycay, Assistive Technology Coordinator, Harvard University: &lt;EM&gt;“Recent community-driven efforts to expand math authoring and reading options within Microsoft 365 are a shining example of what is needed to ensure that educators and learners have increased opportunities to engage with STEM content at all levels across the digital frontier. Each accessibility improvement in math supports broader, lifelong interoperability for everyone.”&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;From Dax Castro, Chax Training and Consulting: &lt;EM&gt;“It carried the underlying MathML you pasted into Word into the PDF and allows that to be discoverable by NVDA and JAWS so that it is voiced correctly and as a fallback, has the Alt Text on top of it. It’s a great solution!”&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;From Jennifer Marsala, Instructional Designer, Department of Mathematics, University of Houston: &lt;EM&gt;“Wow! I had a 20-page section of a textbook in Microsoft Word that was full of MathType equations – and with a few clicks of the mouse, Word changed them to all to native Office Math format in about 20 seconds! Thanks so much for adding this mass conversion feature!!!”&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Learn about the &lt;A href="https://aka.ms/MSFT365InsiderProgram" target="_blank" rel="noopener"&gt;Microsoft 365 Insider program&lt;/A&gt;&amp;nbsp;and sign up for the&amp;nbsp;&lt;A href="https://aka.ms/msft365insidernews" target="_blank" rel="noopener"&gt;Microsoft 365 Insider newsletter&lt;/A&gt; to get the latest information about Insider features in your inbox once a month!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 15:45:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/from-latex-to-accessible-pdfs-transforming-math-workflows-in/ba-p/4523506</guid>
      <dc:creator>PeteWu</dc:creator>
      <dc:date>2026-06-02T15:45:00Z</dc:date>
    </item>
    <item>
      <title>Shaping Copilot across Word, Excel, and PowerPoint</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/shaping-copilot-across-word-excel-and-powerpoint/ba-p/4521706</link>
      <description>&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;We’ve been working to make Microsoft 365 feel more connected and integrated with Copilot, available as a helpful thought partner, when you need it. We recently updated &lt;SPAN data-teams="true"&gt;&lt;A href="https://word.cloud.microsoft/?wdOrigin=COMMUNITY.WORD.1PBLOG" target="_blank" rel="noopener"&gt;Word for the web&lt;/A&gt;, &lt;A href="https://excel.cloud.microsoft/?wdOrigin=COMMUNITY.EXCEL.1PBLOG" target="_blank" rel="noopener"&gt;Excel for the web&lt;/A&gt;, and &lt;A href="https://powerpoint.cloud.microsoft/?wdOrigin=COMMUNITY.POWERPOINT.1PBLOG" target="_blank" rel="noopener"&gt;PowerPoint for the web&lt;/A&gt; as well as Word, Excel and PowerPoint on the Windows and Mac platforms&lt;/SPAN&gt; with a consolidated, more visible entry point (Dynamic Action Button) at the bottom right of the apps that suggests actions from Copilot based on your document.&lt;SPAN data-ccp-props="{}"&gt; You may have noticed similar entry points in other apps across Microsoft 365, all with access to the same Copilot.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;As we continue to thoughtfully and intentionally shape how Copilot integrates with the tried-and-true workflows within Word, Excel and PowerPoint that you rely on, we’re listening, learning and improving as we go. To that end, &lt;/SPAN&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-ccp-props="{}"&gt;we're already making a few updates based on feedback.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;Updated entry points for&amp;nbsp;Copilot&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-teams="true"&gt;While we are seeing increased engagement with Copilot in Office apps with this update, we are also hearing the need for more control over how Copilot appears. Our vision is to evolve Copilot over time to be fully adaptive, flexible and personalized. For more on that see: &lt;A href="https://microsoft.design/articles/a-simplified-system/" target="_blank" rel="noopener" aria-label="Link A simplified system - Microsoft Design"&gt;A simplified system - Microsoft Design&lt;/A&gt;. In the short term, we've heard your feedback and are making some adjustments.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;Move to ribbon option for the Copilot Dynamic Action Button&lt;/H3&gt;
&lt;P&gt;For customers who prefer using the ribbon, we’re adding a &lt;STRONG&gt;Move to ribbon&lt;/STRONG&gt; option. We will be rolling this out soon, and you will see a new option when right-clicking the Dynamic Action Button.&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;H3&gt;Docking that stays in place while you work&lt;/H3&gt;
&lt;P&gt;The&amp;nbsp;&lt;STRONG&gt;Dock &lt;/STRONG&gt;option will continue to be available as well when you right-click or drag to button the right. You can still move it back onto the canvas whenever it fits your workflow or preference, allowing for flexibility, while still keeping Copilot easy and clear to access. So when you want the entry point close to the canvas but out of the way, you can dock it to the edge of the window. We are making an update so that the button will stay docked throughout your time in the document, instead of returning to its original position every time you engage with Copilot.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;For more information about Copilot in Word, Excel and PowerPoint and options for end-user and IT admin configuration, see our Support article &lt;A class="lia-external-url" href="https://support.microsoft.com/topic/the-copilot-dynamic-action-button-in-word-excel-and-powerpoint-40db4cef-3d59-474d-9dec-f649b5bfab8e" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN data-contrast="auto"&gt;Looking ahead&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-teams="true"&gt;&lt;STRONG&gt;6/5/2026 UPDATE:&lt;/STRONG&gt; Updates mentioned in this post are now rolling out.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-contrast="auto"&gt;&lt;SPAN data-teams="true"&gt;These updates will start rolling out soon in&amp;nbsp;&lt;A class="lia-external-url" href="https://word.cloud.microsoft/?wdOrigin=COMMUNITY.WORD.1PBLOG" target="_blank" rel="noopener"&gt;Word for the web&lt;/A&gt;, &lt;A class="lia-external-url" href="https://excel.cloud.microsoft/?wdOrigin=COMMUNITY.EXCEL.1PBLOG" target="_blank" rel="noopener"&gt;Excel for the web&lt;/A&gt;, and &lt;A class="lia-external-url" href="https://powerpoint.cloud.microsoft/?wdOrigin=COMMUNITY.POWERPOINT.1PBLOG" target="_blank" rel="noopener"&gt;PowerPoint for the web&lt;/A&gt; as well as Word, Excel and PowerPoint on the Windows and Mac platforms. They are just a step on our journey toward a vision where Copilot is seamlessly integrated in Office to amplify, guide, and help you do your work, on your terms.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Stay tuned for more updates and we'll keep listening and evolving!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2026 15:52:34 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-365-insider-blog/shaping-copilot-across-word-excel-and-powerpoint/ba-p/4521706</guid>
      <dc:creator>Katie Kivett</dc:creator>
      <dc:date>2026-06-05T15:52:34Z</dc:date>
    </item>
  </channel>
</rss>

