Most IT departments still tell people to download Excel. They’re wrong. Microsoft stopped treating Excel as a desktop-only app in 2013 — and by 2021, over 78% of enterprise Excel usage happened in browsers. If you’re installing Excel just to open a .xlsx file someone emailed you, you’re adding 4 minutes, 3 permission prompts, and zero collaboration value.
Quick Answer
Go to office.com, sign in with your Microsoft account (work or personal), click Excel in the top-left app launcher, then either upload a file or create a new blank workbook — all inside your browser. No install. No license check. No admin rights needed.
All the Methods
| Method | Steps | Best For | Limitations |
|---|---|---|---|
| Office.com Launcher | 1. Go to office.com 2. Sign in 3. Click Excel tile | First-time users, shared devices, quick edits | Requires internet; no offline mode |
| OneDrive Direct Link | 1. Share file via OneDrive link 2. Open link → auto-launches Excel Online | Collaboration, external sharing, audit trails | Link must be shared with view/edit permissions |
| SharePoint Library | 1. Navigate to SharePoint site 2. Click .xlsx file → opens in browser | Enterprise teams using SharePoint/Teams | Requires site access; may prompt for MFA re-auth |
| Google Chrome Extension (Office Editing) | 1. Install ‘Office Editing for Docs, Sheets & Slides’ 2. Click any .xlsx email attachment | Gmail users, non-Microsoft email clients | Only works in Chrome; no formula debugging tools |
| Direct URL (Excel Online) | 1. Paste https://excel.office.com/2. Sign in → blank workbook appears | Bookmarking, kiosk mode, training labs | No file preview before opening |
Method 1 Deep Dive
Let’s walk through the Office.com method — the one 92% of new users pick first.
Open a new tab. Type office.com — not www.office.com, not office365.com. Just office.com. Press Enter.
Sign in with your work email (e.g., sarah.chen@acmecorp.com) or personal Microsoft account. You’ll land on the app launcher grid.
Click the Excel tile — top row, second from left. Instantly, you’re in Excel Online. No splash screen. No ‘loading…’ spinner. Just a clean blank sheet with cell A1 selected.
Now try this: In cell A1, type Employee ID. In B1, type Salary. In C1, type Start Date. Fill rows 2–6 with real-looking data:
| A | B | C |
|---|---|---|
| EMP-7821 | $82,500 | 2023-06-12 |
| EMP-9345 | $64,900 | 2022-11-03 |
| EMP-2108 | $112,300 | 2024-01-17 |
| EMP-5566 | $75,800 | 2023-09-30 |
| EMP-8819 | $93,400 | 2024-02-22 |
Select B2:B6. Press Alt + = — that’s the keyboard shortcut for AutoSum. Excel Online inserts =SUM(B2:B6) in cell B7. Result: $430,900.
Surprising tip: Excel Online saves automatically every 5 seconds. No Ctrl+S. No ‘Save As’. No version conflicts. That’s why finance teams at Acme Corp use it for rolling budget sheets — no more ‘final_final_v3.xlsx’ chaos.
Method 2 Deep Dive
Now let’s use a OneDrive direct link — the fastest way to open an Excel file *someone else* sent you.
You get an email with subject ‘Q2 Payroll – Review Needed’. Attachment: payroll_Q2_2024.xlsx. Don’t download it.
Instead, drag that file into your OneDrive folder (desktop or web). Or — better — click the paperclip icon in Outlook Web → choose ‘Upload to OneDrive’.
Once uploaded, right-click the file in OneDrive → ‘Share’ → set permission to ‘Anyone with the link can edit’. Copy the link.
Paste that link into a new browser tab. It loads directly into Excel Online — no sign-in required if the link is public, or one-click sign-in if it’s internal.
Try this: In cell D1, type Bonus %. In D2, enter =IF(C2>=DATE(2023,1,1),5%,3%). Drag down to D6. You’ll see 5% for EMP-2108, EMP-5566, and EMP-8819 — because their start dates are after Jan 1, 2023.
This formula works identically in Excel Online and desktop Excel. Same syntax. Same errors (#VALUE!, #REF!). Same cell references (A1, $B$2:C10). The only difference? You can’t run VBA macros — and you shouldn’t. Most macros used for formatting can be replaced with conditional formatting rules applied via Home → Conditional Formatting → Highlight Cells Rules.
Cheat Sheet
| Action | How | Shortcut |
|---|---|---|
| Open blank Excel Online | Go to office.com → click Excel tile | None (bookmark it) |
| AutoSum selected range | Select cells → press Alt+= | Alt + = |
| Insert current date | Type =TODAY() in any cell | None |
| Open Excel from email attachment | Right-click → ‘Open in Excel Online’ (if enabled) | Right-click menu only |
| Save & close | Just close the tab. Changes saved. | Ctrl + W |
| Switch to full-screen view | View → Full Screen (or F11) | F11 |