Tip: If Copilot’s floating icon is annoying, here’s how to put it back in the ribbon
▲ 8 r/CopilotMicrosoft+3 crossposts

Tip: If Copilot’s floating icon is annoying, here’s how to put it back in the ribbon

If the floating Copilot icon in Microsoft 365 keeps getting in the way, there’s a quick way to move it back to the ribbon.

What can you do?:

Move the icon:
Put Copilot back into the ribbon if the floating button is covering content.

Dock or undock:
Dock the icon to shrink it and keep it out of the way, or undock it to bring it back into view.

Switch positions:
Toggle between the bottom‑right floating icon and the ribbon version depending on what works best for your workflow.

It’s a simple set of options, but it makes Copilot much less intrusive if the default placement isn’t working for you.

Watch it in action here: https://www.youtube.com/shorts/oXQQDqvV_ko

Has the floating icon been getting in your way too?

youtube.com
u/giges19 — 3 days ago
▲ 5 r/Emoji+2 crossposts

Tip: Type a colon in Teams to quickly surface all emojis, even custom ones

If you use Microsoft Teams a lot, there’s a simple trick that makes finding emojis way faster.

Just type a colon : in the message box and start entering a couple of letters. Teams will instantly surface every matching emoji, including custom ones your org (or users in your org) has added to Teams.

Examples from the tip:

  • :wa brings up waving, surfing (think of the waves), and other emojis with “wa” in
  • Custom emojis that don’t appear in the bracket search also show up through this method, so if you added a Copilot emoji and labelled it "Copilot Logo", it'll appear as "copilot-logo" in the colon search for your emoji.

It’s a small shortcut, but it makes navigating the emoji library much quicker and reveals options you might not even know exist.

Watch it in action here: https://www.youtube.com/shorts/b2st316Jmng

Did you know this method for searching emojis in Teams?

youtube.com
u/giges19 — 3 days ago

Add Videos from your laptop, the web or even a Stock Video to PowerPoint Desktop on Windows

Do you ever want to add something dynamic to your presentation or a video without leaving your presentation mode?

This guide breaks down everything you need to know to confidently insert, format, and control videos in your presentations.

1. Inserting Videos into PowerPoint

PowerPoint gives you three powerful ways to add video content into your slides:

From Your Device

Perfect for MP4s, screen recordings, or any video stored locally.

  • Go to Insert → Video → This Device
  • Select your file and drop it straight onto the slide

Stock Videos (Microsoft 365)

Ideal when you need clean, professional footage in the background without leaving PowerPoint.

  • InsertVideoStock Videos
  • Search the library and insert high‑quality clips instantly

Online Videos (YouTube, Vimeo, SlideShare)

Great for embedding content directly from the web.

  • InsertVideoOnline Videos
  • Paste the URL from YouTube, Vimeo, or SlideShare
  • The video embeds and plays inside your slide

2. Formatting Your Video

Once your video is on the slide, you can transform its appearance just like you can with images and shapes. You can play with brightness, contrast, colour tone, styles and more.

3. Trim Your Video or Fade In / Fade Out

Cut off unneeded pieces from the start or end of videos to keep only the important part(s) and even add smooth transitions so your video doesn’t start or stop abruptly.

4. Playback Behaviour

Choose how your video behaves during your presentation, from 3 different settings:

  • Automatically [Starts when the slide appears]
  • On Click [When you click it, it'll play]
  • In Click Sequence [If you have animations it'll play in the order in your animation pane]

5. Audio Settings

Adjust volume or mute the clip entirely.

Mastering these features will help you create presentations that feel cinematic, engaging, and far more professional. PowerPoint’s video tools are deeper than most people realise and is a gateway into learning to work with videos in your presentation.

https://www.youtube.com/watch?v=V3td6KzCK0Y

youtube.com
u/giges19 — 10 days ago
▲ 2 r/CopilotMicrosoft+3 crossposts

Tip: Get Copilot to simplify something you don't understand

I find it really useful to use Copilot when I get to a topic, I don't understand or a jargon word that keeps getting thrown around.

This is where I get Copilot to "Explain what [Insert topic] is as if I'm 6 years old.".

It breaks things down to a simpler and much clearer level, making it much easier to understand. It’s a great way to quickly understand what something actually means.

https://www.youtube.com/shorts/iHPq6C3i9iQ

youtube.com
u/giges19 — 15 days ago

A Practical Guide to Splitting Text with TEXTSPLIT in Excel

If you’ve ever tried cleaning up messy text in Excel that has inconsistent symbols, random delimiters, you’ll know how quickly “Text to Columns” falls apart, even though it is amazing in it's own right. One weird character and suddenly nothing lines up.

That’s where TEXTSPLIT changes the game. It’s a fully formula‑driven way to split text into columns, rows, or both at once, so then it is dynamic, repeatable, and perfect for messy real‑world data.

Below is a full walkthrough of how TEXTSPLIT works and how you can use it to turn chaos into clean, structured data.

1. TEXTSPLIT Formula

TEXTSPLIT takes a text string and splits it using one or more delimiters.
It can spill results horizontally, vertically, or as a full table if you use both.

=TEXTSPLIT(text, col_delimiter, [row_delimiter])

text (Mandatory): The cell or string you want to split.
col_delimiter (Optional): What separates columns (e.g., ",").
row_delimiter (Optional): What separates rows (e.g., "^(").)

If you include both, Excel creates a full structured table.

2. Splitting Text into Columns

If you have a comma‑separated list like:

"Product A,Product B,Product C"

You can instantly spread it across columns:

=TEXTSPLIT(A1, ",")

This gives you a clean horizontal layout just like using Text to Columns.

3. Avoiding the #SPILL! Error

TEXTSPLIT spills results into adjacent cells.
If anything blocks the spill range, you’ll get:

#SPILL!

The fix is simple:
Make sure the cells to the right (or below) are empty.
Once the space is clear, the formula works perfectly.

4. Splitting Text into Rows

If your data uses a different symbol, like a circumflex ^ , you can split vertically:

=TEXTSPLIT(A1, , "^")

This turns one messy cell into a clean vertical list.

5. Splitting it into a Table

If you had a dataset like the below

"Products,Stock,Price~Product A,19,19.95~Product B,62,17.95~Product C,41,9.95"

You can instantly spread it using the formula below:

=TEXTSPLIT(A1, ",", "~")

Then you'll get the below:

Products Stock Price
Product A 19 19.95
Product B 62 17.95
Product C 41 9.95

Once you start using TEXTSPLIT, you’ll wonder how you ever managed without it.

To see all these examples in action, check out the full video tutorial: https://www.youtube.com/watch?v=REWu4OEr-vw

u/giges19 — 19 days ago
▲ 151 r/ExcelTips

Replace Nested IFs with Excel’s SWITCH Formula for Cleaner, More Readable Logic

If you’ve ever worked with long chains of nested IF statements in Excel, you’ll know how quickly they become messy, hard to read, and even harder to maintain. One small change and suddenly half the logic breaks.

That’s where the SWITCH function comes in. It’s a cleaner, more structured alternative that lets you evaluate one expression and return different results without stacking multiple IFs on top of each other.

Here is a full walkthrough of how to use the SWITCH formula to simplify your logic and keep your spreadsheets easy to understand.

1. SWITCH Formula

The SWITCH function compares one expression against a list of values and returns the result for the first match it finds.

=SWITCH(expression, value1, result1, value2, result2, ..., [default])

  • expression (Mandatory): The value you want to test.
  • value / result pairs (Mandatory): Each value is checked against the expression. If it matches, Excel returns the corresponding result.
  • [default] (Optional): A fallback value returned when no matches are found. This prevents #N/A errors and keeps your sheet tidy.

You can include up to 126 value/result pairs, making SWITCH ideal for structured logic.

2. Mapping Weekday Numbers to Day Names

A use case I've seen is when converting weekday numbers (1 to 7) into readable day names.

This avoids a long nested IF and gives you a clean, readable block of logic.

=SWITCH(A1, 1, "Sunday", 2, "Monday", 3, "Tuesday", 4, "Wednesday", 5, "Thursday", 6, "Friday", 7, "Saturday")

3. Assigning Status Codes

If you work with systems that output numeric codes, SWITCH makes it easy to map them to meaningful labels.

=SWITCH(A1, 200, "Success", 300, "Warning", 500, "Failed", 404, "Not found", "Unknown" )

Adding a default value ensures you never see an unexpected #N/A.

4. Using SWITCH for Grading Systems

You can also use a TRUE expression to handle ranges, which is perfect for grading or categorisation.

=SWITCH(TRUE, C2>=90, "A", C2>=80, "B", C2>=70, "C", C2>=60, "D", "F" )

This approach keeps your logic compact and easy to adjust later.

5. Why SWITCH Is Worth Using

  • Cleaner than nested IF statements
  • Easier to read and maintain
  • Supports a large number of value/result pairs
  • Allows a default value to prevent errors

To see these examples, watch this full video walkthrough: https://youtu.be/jKQQ2ACPvEk?si=aK5T5a2vKfU9eNu7

u/giges19 — 1 month ago
▲ 3 r/microsoftoffice+4 crossposts

Dock and get this annoying floating Copilot Icon off of my documents

MS just moved the Copilot button in the ribbon to the bottom right of my window in Excel, PowerPoint and Word, covering content on my files which has been frustrating me.

At least there's a way to remove it, kinda...

  1. Head to the hovering Copilot icon in your document and right-click it.
  2. Click Dock and it should tag with a smaller footprint on screen, holding onto the scrollbar for dear life haha.

Video linked above and here.

Anyone else find this hovering Copilot icon annoying?

youtube.com
u/giges19 — 1 month ago

How to Use Excel’s HYPERLINK Function to Link Websites, Files, and Documents

If you have ever managed a massive spreadsheet and found yourself constantly digging through folders or opening your browser just to find related files or websites, you know how disruptive it can be in breaking your flow. Or you need to link where the data is coming from so people can check.

That’s where the HYPERLINK function steps in. It is one of Excel's best tools for building clean, interactive dashboards, allowing you to launch websites, open server files, or jump straight to shared documents or other cells in your workbook directly from a single cell.

Here is a full walkthrough of how to use the HYPERLINK formula to keep your spreadsheets organised and highly accessible.

1. HYPERLINK Formula

The HYPERLINK function is incredibly straightforward, relying on just two parameters to work:

=HYPERLINK(link_location, [friendly_name])
  • link_location (Mandatory): The actual path to the destination. This can be a web URL, a file path on your local computer, or a link to a shared server. (Note: This must always be enclosed in quotation marks, or point to a cell reference that contains the path).
  • [friendly_name] (Optional): The text or value that is actually displayed in the cell. If you leave this blank, Excel will simply display the raw, unappealing URL path instead.

2. Linking to the Web with Dynamic Names

Connecting your spreadsheet to external websites is simple.

  • Static Link: =HYPERLINK("https://www.google.com", "Go to Google")
  • Dynamic Link: You can also use cell references for the display name. If cell A2 contains the text "Formula 1 Website" and cell B2 contains the actual URL, your formula can look like this: =HYPERLINK(B2, A2). This makes it incredibly easy to update display names across a massive list without changing the formulas themselves.

3. Linking to Local or Shared Files

HYPERLINK isn't just for web browsing; it is highly effective for linking directly to documentation, contracts, or reference sheets stored elsewhere.

  • Local & Server Files: You can link directly to a file on your hard drive or a company server by inputting the file path (e.g., "C:\Documents\ProjectPlan.xlsx" or "\\SERVER_prod\ProjectPlan.xlsx").
  • Cloud Platforms: If your team relies on cloud collaboration, you can paste the share links from SharePoint or OneDrive directly into the link_location parameter, giving your team instant access to the master files.

4. Security Alerts and Navigation Behaviour

When interacting with hyperlinks in Excel, it helps to understand how they behave out of the box:

  • Security Notices: When clicking a link pointing to a local file or an external server, Excel will often trigger a security warning. Don't panic as this is a native Microsoft safety feature ensuring you want to open a file outside of the workbook.

To see these web and file examples built out step-by-step, watch the full video walkthrough here: https://www.youtube.com/watch?v=Zl3r_9wGtHc

reddit.com
u/giges19 — 1 month ago
▲ 2 r/word+1 crossposts

Master the Basics to Get the Most from Microsoft Word

If you have ever stared at a Microsoft Word document feeling overwhelmed, or found yourself wasting time hunting through menus for basic formatting options, you are not alone. Whether you are a student writing an assignment, a professional drafting reports, or simply looking to boost your digital skills, mastering the foundations of Word can save you hours of frustration.

This comprehensive guide breaks down the essential features, keyboard shortcuts, and layout tools you need to navigate, edit, and format documents efficiently.

1. Document Fundamentals & Essential Shortcuts

Before diving into complex layouts, you need to master the core shortcuts. These universal commands keep your hands on the keyboard and speed up your workflow:

  • Create a new document: Ctrl + N
  • Open an existing file: Ctrl + O
  • Save your progress: Ctrl + S
  • Print the document: Ctrl + P
  • Close the file: Ctrl + W

2. Navigating Your Document Like a Pro

Scrolling endlessly through a long document is highly inefficient. Instead, use these precise navigation keys to jump exactly where you need to be:

  • Move up or down one full screen: Page Up / Page Down
  • Jump to the start or end of a line: Home / End
  • Jump to the absolute beginning or end of the document: Ctrl + Home / Ctrl + End
  • Open the "Go To" dialog box: Ctrl + G (Perfect for instantly jumping to a specific page number)

3. Efficient Text Editing and Proofing

Writing is only half the battle; editing is where the real work happens. Use these standard editing commands alongside Word's built-in proofing tools to polish your content:

Core Editing Shortcuts

  • Cut / Copy / Paste: Ctrl + X / Ctrl + C / Ctrl + V
  • Undo / Redo an action: Ctrl + Z / Ctrl + Y
  • Find / Replace text: Ctrl + F (to locate words) / Ctrl + H (to replace words globally)
  • Select everything: Ctrl + A

Proofing Tools

To ensure your document is error-free, take advantage of the Thesaurus to vary your vocabulary, and use the Word Count tool to track document length. When you are ready to review your work, press F7 to open the Microsoft Editor pane, which will instantly scan your text for spelling and grammar mistakes.

4. Formatting Text & Paragraphs

Clear visual hierarchy makes your document professional and easy to read. You can format individual words or entire paragraphs using these core adjustments:

  • Text Styles: Use Ctrl + B for Bold, Ctrl + I for Italics, and Ctrl + U for Underline. You can also easily change font types, sizes, and font colours from the Home tab.
  • Paragraph Alignment: Align your text to fit your document style:
    • Ctrl + L (Left-aligned)
    • Ctrl + E (Centred)
    • Ctrl + R (Right-aligned)
    • Ctrl + J (Justified – aligns text to both margins for a clean, book-like look)
  • Lists & Spacing: Organise information cleanly using bulleted or numbered lists. You can also adjust line and paragraph spacing, or use Tab stops and the horizontal ruler to create custom indents.
  • The Format Painter: Found a style you love? Use the format copying shortcuts to copy the layout of one piece of text and apply it directly to another without redoing your settings.

5. Page Layout, Design & Advanced Elements

Once your text is finalised, it is time to focus on the structural structure and design of the pages themselves. These settings are crucial for creating polished, presentation-ready documents:

  • Page Setup: Adjust your Margin Size (e.g., Normal or Narrow), swap the Paper Orientation between Portrait and Landscape, or change the Paper Size (such as A4 or Letter).
  • Breaks & Columns: Use Page Breaks or Column Breaks to control how text flows across pages, or split your text into multiple columns for newsletter layouts.
  • Polished Extras: Add Headers and Footers for a consistent top-and-bottom border, insert automated Page Numbers, or apply a subtle Watermark (like "Draft" or "Confidential"). You can even add custom page colours and borders for creative projects.
  • Advanced Elements: Don't limit yourself to just plain text. Word allows you to insert complex mathematical equations, special symbols, or even import text directly from external files.

To see every single one of these shortcuts and tools demonstrated step-by-step in a guided walkthrough, watch the full video tutorial here: https://www.youtube.com/watch?v=pUZenZHmPco

youtube.com
u/giges19 — 1 month ago

Tip: Find your open tabs faster with Ctrl + Shift + A

If you're ever like me and have more than 5 tabs open at any one time, it's quick to get lost where you stuck a tab, be it in a tab group or having accidentally closed it.

I'm so glad I can now search all my open tabs with Ctrl + Shift + A and sometimes it brings my recently closed tabs for when I've been a numpty and closed something I needed open 🤦🏻‍♂️

If you want to see it in action watch the linked video.
Have you ever used this shortcut in Microsoft Edge? Are there any other shortcuts you find useful?

youtube.com
u/giges19 — 1 month ago

Use the NETWORKDAYS formulas to calculate the number of working days in a project or timeline + how to factor in bank holidays

Ever promised a client a project would take "10 days", or thought you had 12 days to complete that school assignment to only to realise that weekends are included in that and a bank holiday too? Standard calendar math always overestimates how long you actually have to deliver something.

That’s where the NETWORKDAYS function steps in. It is an essential tool for project managers, HR professionals, people needing it to manage timelines and data analysts to calculate the exact number of working days between two dates, completely filtering out weekends and custom holidays.

Here is a full breakdown of how to use NETWORKDAYS to keep your timelines realistic and accurate.

1. What NETWORKDAYS Does

By default, the NETWORKDAYS function calculates the total number of workdays between a start date and an end date.

  • It automatically excludes weekends (Saturday and Sunday).
  • It can optionally exclude a custom list of holidays, such as public bank holidays or company-wide days off. [Note: You'll need to create this list yourself]

2. Formula Structure

=NETWORKDAYS(start_date, end_date, [holidays])

The formula relies on two main parameters with an optional third:

  • start_date: The date your project or timeline begins.
  • end_date: The date your project or timeline concludes.
  • [holidays] (Optional): A cell range containing specific dates you want to skip (like Christmas, Easter, or scheduled team shutdowns).

3. NETWORKDAYS in Action (Project Planning)

Imagine you are managing multiple projects and need to figure out the actual working time available for each.

If a project starts on December 20th and ends on January 5th, a simple subtraction formula (End Date - Start Date) will give you 16 calendar days. However, using =NETWORKDAYS(A2, B2) immediately strips out the weekends, dropping that number down to a realistic count of active working days.

4. Making Timelines More Realistic with Holiday Lists

To get the most accurate timeline possible, you should always utilise the optional [holidays] argument.

If you calculate a project's timeline across December and January without factoring in holidays, your numbers will be skewed. By referencing a separate list of dates on your sheet containing bank holidays (i.e., Xmas and New Years, etc.) or furlough periods, Excel subtracts those specific weekdays from the total count. You will see your available project timeline decrease dynamically, preventing you from over-promising deliverables to clients. [Note, you'll probably need to get your bank holidays from your respective government site (e.g. for UK bank holidays, search GOV.UK, etc.).]

Want to see an example of this in real-time to show how to work with this formula? Watch the full video walkthrough here: https://www.youtube.com/watch?v=4jBi9XeK1rk

u/giges19 — 1 month ago

Create your own branded colours in PowerPoint and using the eyedropper tool in PowerPoint Desktop on Windows

Do you ever feel trapped by PowerPoint's default colour options? If you want your presentations to look more cohesive, professional, and perfectly branded to you or your business, you need to move beyond the standard palettes available.

Mastering Colour Themes and the Eyedropper tool is key to begin taking full control of how your presentation's look.

1. Working with Colour Themes

PowerPoint comes packed with built-in colour palettes (including colour palettes from older versions of Office) that automatically update your text, shapes, and charts to match.

  • Where to find them: Head over to the Design tab on the ribbon.
  • Variants: Next to the main themes, you'll see a Variants box. You'll usually find this on the right handside after Themes. Drop this down to quickly swap between different colour configurations of the same overall style.

2. How to Create a Custom Colour Palette

For a more cohesive brand with brand consistency, you can build your own theme from scratch. Imagine you are building a custom palette for a brand like your business; you can create colours that match, be it warm browns and creams, bright yellow and reds or whatever matches your own brand.

  1. Go to the Design tab, click the dropdown arrow in the Variants group, and hover over Colours or Colors depending on the language pack installed.
  2. Click Customise Colours or Customise Colors at the bottom of the list.
  3. Swap out the accent colours to match your brand's specific hex codes or RGB values.
  4. Name your new theme something recognisable and click Save.

Now, this custom palette will be available across your entire deck, ensuring your shapes and fonts always stay coloured to your brand.

3. Prioritising Contrast and Accessibility

When building your palette, beautiful colours shouldn't override readability. Always ensure there is contrast between your background elements and your foreground text. Failure to have this can really make it hard for people to distinguish what is on your slides.

  • Dark backgrounds require crisp, light text (whites, creams, light grays).
  • Light backgrounds demand dark text (blacks, deep navies, dark charcoals).

If the contrast is too low, your audience will struggle to read your slides, making your presentation lose its impact.

4. The Eyedropper Tool: Precise Colour Matching

If you have a logo, website screenshot, or product image on your slide and want to copy its exact colour, don't guess the shade. Use the Eyedropper tool:

  1. Select the shape or text you want to recolour.
  2. Go to Shape Format (or Home) and click the dropdown next to Shape Fill or Font Colour.
  3. Select Eyedropper. Your cursor will turn into a pipette.
  4. Hover over the image and click the exact pixel of colour you want to steal.

Bonus Tip: Once you sample a colour with the Eyedropper pipette, PowerPoint automatically stores it in your Recent Colours section for that session, so you don't have to keep re-sampling it if you wish to apply that colour to other objects!

Watch the full video walkthrough here: https://www.youtube.com/watch?v=hRUjDDfQMqI

youtube.com
u/giges19 — 2 months ago

Lock has been a lifesaver for stopping people moving shapes or images on slides

I hated it when I placed things beautifully on a slide to close it for the night and a colleague or fellow student would go into the file make their own changes and move a background image or shape while trying to edit the deck. Thankfully, I can easily freeze objects in place so they can't be shifted with the Lock function in PowerPoint.

Here is how to lock and unlock elements in PowerPoint:

How to Lock an Object

  1. Right-click on the item (image, shape, or text box) you want to freeze.
  2. Select Lock from the context menu. Once locked, the item cannot be moved or resized by accident.

Thankfully, you can still edit text boxes when objects are locked so you can update the content in those objects without the worry of having to unlock it.

How to Unlock an Object

  1. Right-click the locked item.
  2. Select Unlock. The element is now free to be moved, edited, or resized again.

Bonus Tip: If you have multiple overlapping objects and find it difficult to right-click the exact item you want to lock, go to the Home tab, click Arrange, and open the Selection Pane. From there, you can click the little padlock icon next to any layer name to lock or unlock it instantly.

youtube.com
u/giges19 — 2 months ago

Excel MROUND Function - Use It For Custom Rounding

If you’ve ever looked at a dataset and thought, “Why won’t these numbers round to the specific interval I need?” there’s a good chance standard rounding functions are the issue. Standard formulas like ROUND only care about decimal places, leaving you stranded when you need to round to custom intervals like the nearest 5, 7, 10 or 500.

That’s where MROUND steps in. It’s one of Excel’s most underrated math functions, quietly bringing order to pricing, scheduling, and production data.

Below is a full walkthrough of what MROUND does, when to use it, and how to avoid the hidden quirks that trip up most Excel users.

What MROUND Is & Why It Matters

The MROUND function returns a number rounded to the nearest specified multiple. Unlike standard rounding, which forces you to round to tens, hundreds, or specific decimal places, MROUND lets you round to any step or interval you choose.

You need it when you want to:

  • Normalise pricing: Round items to the nearest $0.05 or $0.99 interval.
  • Streamline logistics: Round order quantities to match fixed box sizes (e.g., multiples of 12 or 50).
  • Simplify scheduling: Round times or durations to the nearest 15-minute block.
  • Clean up reporting: Standardise data variations into predictable, clean increments.

MROUND vs. Standard Rounding

  • ROUND / ROUNDUP / ROUNDDOWN: Scale numbers based strictly on power-of-10 decimal places (e.g., 10, 1, 0.1, 0.01).
  • MROUND: Scales numbers based on custom factors (e.g., 2, 5, 7, 15, 500).

MROUND in Action

Here is how MROUND alters numbers based on different chosen multiples:

Original Number Target Multiple Result Explanation
57 2 58 58 is the closest multiple of 2
26 5 25 25 is closer than 30
57 7 56 56 is the nearest multiple of 7
26 15 30 30 is closer than 15
257 500 500 500 is closer than 0
1.3 0.3 1.2 Works perfectly with decimal multiples too

Formula Structure

=MROUND(number, multiple)
  • number: The core value or cell reference you want to round.
  • multiple: The target interval you want the final number to conform to (e.g., if this is 3, your result will always be a multiple of 3).

Pitfalls to Watch Out For

While MROUND is incredibly useful, Excel handles it with a few rigid rules that can break your spreadsheet if you aren't prepared:

1. The Sign Match Rule (#NUM! Error)

The number and the multiple must share the same mathematical sign (both positive or both negative).

  • =MROUND(-10, -3) outputs -9 (Works perfectly)
  • =MROUND(10, -3) or =MROUND(-10, 3) outputs a #NUM! error.

2. The Midpoint Decimals Glitch

When a number lands exactly halfway between two multiples, Excel rounds up away from zero. However, due to floating-point binary math in Excel, floating midpoints (like 6.05 vs 7.05) can occasionally round in unexpected directions.

To see MROUND in action with a guided walkthrough, take a look at the video I made: https://www.youtube.com/watch?v=xkYWT5yfqrg

u/giges19 — 2 months ago

Connecting to the Web with the Launch Function in Your Power App

If you’ve ever built a “central hub” app and thought “how do I get users to our external resources”, there’s a good chance the issue isn’t your navigation... it’s the function you’re using to bridge the gap. That’s where the Launch function steps in. It’s one of Power Apps’ most practical tools, quietly turning your app into a gateway for the rest of the web.

Below is a full walkthrough of what the Launch function does, how to set it up, and how it behaves in real‑world apps.

What the Launch Function Is & Why It Matters

The Launch function allows you to open external URLs such as Google, SharePoint, or other internal tools like SAP directly from your app. It is the primary tool for linking your users to content that lives outside of Power Apps.

Setting Up & Formula Syntax

To trigger an external link, you typically walk through a simple control setup:

  • Button Control: You start by inserting a button control and renaming it for clarity.
  • OnSelect Property: You then use the OnSelect property of that button or any other element to trigger the action.
  • The Power of Quotes: Within the Launch function, it is essential to use speech marks (quotes) around the URL so Power Apps recognizes it as text.

Launch vs. Navigate: Know the Difference

A core concept for building navigation is understanding the distinction between two key functions:

  • Launch: Use this exclusively for external pages or apps outside of your current Power App.
  • Navigate: Use this for moving between different screens internally within the same app.

The Launch Function in Action (Simple Example)

Imagine an app acting as a company portal. You have a button labeled "Submit Feedback." By setting its OnSelect property to a Launch function pointing to a Microsoft Form URL, clicking that button instantly opens the form in a new browser tab.

An example of how the formula looks is: Launch("https://www.google.com")

This ensures that your app can effectively manage external content in a way that feels professional and user-friendly.

Testing Your Connections

Always verify your formulas by ensuring your URLs are properly encased in quotes and testing the button behavior in your app's preview mode to confirm the correct external pages are launching.

To see the Launch function in action with a guided walkthrough, take a look at the video I made: https://www.youtube.com/watch?v=RZfAiwcPu-k&list=PLju7Zi4M1O9bJWG56RKjVa8Jmv8CDpahU&index=2

youtube.com
u/giges19 — 2 months ago

Record your screen in PowerPoint Desktop App

If you’ve ever spent an hour building a presentation and thought “why is this taking so long,” there’s a good chance the issue isn’t your content... it’s the constant clicking you’re doing to add new slides. That’s where the Ctrl + M shortcut steps in. It’s one of PowerPoint’s simplest but most effective efficiency tools, quietly keeping you in the creative flow.

Below is a full walkthrough of why this shortcut is a game-changer and how it behaves in real-world deck building.

The "Clicking" Trap

Manually navigating to the "Home" or "Insert" tab just to find and click the "New Slide" button might only take a few seconds, but those seconds add up. Every time you move your hand from the keyboard to the mouse, you break your typing momentum and slow down your creative process.

The Solution: Instant Slide Insertion

The fastest way to add a slide isn't through a menu... it's through your keyboard. By using a simple key combination, you can build your deck without ever breaking your stride.

  • The Shortcut: Pressing Ctrl + M instantly inserts a new slide into your presentation.
  • The Placement: The new slide is added immediately after your currently selected slide, typically adopting the layout of the slide before it.

This ensures that the "flow" of your work remains uninterrupted, allowing you to focus on the story you're telling rather than the software you're using.

To see this shortcut in action with a guided walkthrough, take a look at the video I made: https://www.youtube.com/watch?v=hbhXapstCf8&list=PLju7Zi4M1O9b5-VRfN4ykQvFoOM_sq6QP&index=17

Are there any other shortcuts you love using or find intriguing?

youtube.com
u/giges19 — 2 months ago
▲ 3 r/microsoftoffice+2 crossposts

Microsoft Forms: Mastering Branching Logic

If you’ve ever filled out a survey and thought “why am I being asked this,” there’s a good chance the issue isn’t the questions... it’s the logic you didn’t realise was missing. That’s where Branching steps in. It’s one of Microsoft Forms’ simplest but most professional features, quietly ensuring your respondents only see what actually matters to them.

Below is a full walkthrough of what Branching does, how to set it up, and how it behaves in real‑world surveys.

What Branching Is & Why It Matters

Branching allows you to create dynamic surveys where the path a respondent takes depends entirely on their previous answers.

It is the primary tool for creating a "choose your own adventure" style form. You need it when you want to:

  • Track specific data without cluttering the form for everyone.
  • Skip irrelevant questions to reduce "survey fatigue" for respondents
  • Validate paths by sending users to specific follow-up sections.
  • Professionalise the experience by only showing relevant content.
  • Avoid confusion caused by "If yes, answer question 5" instructions.

Setting Up & Configuring Logic

To start, you access the branching options by clicking the three-dot menu (More settings) on any specific question and selecting "Add branching."

From there, you map out the logic:

  • Response Mapping: You can assign specific choices (like "Yes" or "No") to different follow-up questions.
  • End of Form: You can even direct a specific answer to jump straight to the end of the form, bypassing the rest of the survey entirely.

Branching in Action (Simple Example)

Imagine a registration form where you ask if a guest has dietary requirements.

  • If the respondent selects "No," they skip the next five questions about allergies and go straight to the "Submit" button.
  • If they select "Yes," the form instantly reveals a "Please specify" text box.

This ensures that the "something" the user sees is always relevant to their specific situation.

The Benefits of Dynamic Numbering

One of the smartest features of Microsoft Forms is that it automatically adjusts question numbering. Even if a respondent skips from Question 2 to Question 10, the form will renumber them as 1, 2, and 3 on their screen.

This keeps the flow seamless and ensures the respondent never feels like they are missing out on parts of the form.

Testing Your Logic

Before sending your form out, always use the "Preview" mode. This allows you to walk through the different paths yourself to ensure the logic flows exactly as intended.

To see Branching in action with a guided walkthrough, take a look at the video I made: https://www.youtube.com/watch?v=qWpe5uL4GGs

youtube.com
u/giges19 — 2 months ago

If you’ve ever looked at a dataset and thought “why do these numbers make no sense,” there’s a good chance the issue isn’t the formulas... it’s the blanks you didn’t realise were there. That’s where COUNTA steps in. It’s one of Excel’s simplest but most revealing functions, quietly telling you how much real data you actually have.

Below is a full walkthrough of what COUNTA does, when to use it, and how it behaves in real‑world spreadsheets.

What COUNTA Is & Why It Matters

COUNTA counts non‑empty cells in a range.
Not just numbers — anything that isn’t blank:

  • Text
  • Numbers
  • Dates
  • Logical values
  • Errors
  • Even empty strings from formulas like =""

You need it when you want to:

  • Track how many entries users have filled in
  • Check whether a form or table is complete
  • Validate that required fields aren’t left blank
  • Measure dataset completeness before analysis
  • Avoid broken formulas caused by missing inputs

COUNTA vs COUNT (and Why People Mix Them Up)

  • COUNT only tallies numeric values.
  • COUNTA tallies everything except true blanks.

If you’re counting responses, names, IDs, or mixed data types, COUNTA is the function you want.

COUNTA in Action (Simple Example)

Imagine a list of responses in A1:A20.
Some cells have names, some have numbers, some have errors, and some look empty but contain formulas.

=COUNTA(A1:A20)

This instantly tells you how many cells contain something, even if that “something” isn’t visible.

Formula Structure

=COUNTA(value1, [value2], …)

You can feed it individual cells, ranges, or a mix of both.

To see COUNTA in action with a guided walkthrough, take a look at the video I made: https://www.youtube.com/watch?v=s1YWf4C5Vp0

u/giges19 — 2 months ago