Stop Emailing Excel Files — Here’s How to Make Your Workbook Shareable

Most Excel tutorials tell you to 'save as .xlsx and attach it to Outlook.' They’re wrong. That method hasn’t been safe or scalable since 2017 — and if you’re still doing it, you’re creating version chaos, audit gaps, and accidental data leaks. We’ve all been there: Sarah Chen sends ‘Q3-Forecast_FINAL_v3_revised_FINAL.xlsx’ at 4:58 PM, and by 5:03, three people have edited different copies. No one knows which is truth.

The Setup

You’re managing a regional sales tracker for six field reps. It lives in Excel — not Power BI, not Airtable — because finance needs formulas they can audit, and reps need offline access. You’ve built it carefully: dynamic named ranges, conditional formatting on margins, and data validation for region codes. It’s solid. But now leadership wants Finance, Sales Ops, and two external contractors to view or update specific sheets — without breaking anything.

Rep NameRegionQ2 Revenue ($)Q2 Target ($)StatusLast Updated
Maya RodriguezWest Coast$214,890$225,000At Risk2024-06-12
James LinNortheast$287,310$275,000On Track2024-06-14
Aisha PatelSoutheast$192,500$200,000On Track2024-06-10
Diego MoralesMidwest$163,740$175,000At Risk2024-06-11
Sarah ChenWest Coast$241,200$250,000On Track2024-06-15
Tariq JohnsonNortheast$209,650$215,000On Track2024-06-13
Lena KimSoutheast$178,920$185,000On Track2024-06-09
Rajiv DesaiMidwest$155,380$165,000At Risk2024-06-12

The Challenge

Making this workbook shareable isn’t just about clicking ‘Share.’ It’s about controlling who sees what, when, and how — especially when some users only need read-only access to the Summary tab, while Finance must edit cells in B2:E10, and contractors shouldn’t even see the ‘Commission Calculations’ sheet. Excel doesn’t enforce permissions by default. If you upload the raw file to SharePoint or email it, you’ve handed over full control — including the ability to delete named ranges, break links, or paste values over formulas. And yes, that’s happened to me twice (once with a contractor who ‘cleaned up formatting’ and wiped out 3 years of historical growth rates). Trust me, I learned this the hard way.

Worse? Most people assume ‘Save to OneDrive’ = shareable. Not true. Saving there only makes it accessible. To make it truly shareable, you need three layers working together: cloud storage + permission settings + worksheet-level protection — and none of those are enabled by default.

Walking Through It

We’ll do this in four phases — each with a before/after table so you can verify your progress. Open your workbook. Go to File → Save As → OneDrive – [Your Org]. That’s step zero. If you skip this, everything else fails.

Phase 1: Lock down sensitive sheets

Right-click the ‘Commission Calculations’ tab → Protect Sheet. In the dialog, uncheck everything except ‘Select locked cells’ and ‘Select unlocked cells’. Then set a password — write it down somewhere secure (not in the file). This stops anyone from editing formulas or hiding rows. Without this, Finance could accidentally overwrite your commission rate logic in column G.

Before: Anyone opening the file can double-click any cell in Commission Calculations and change =B2*0.075 to =B2*0.1 — no warning, no audit trail.

After: Double-clicking any cell shows ‘The cell is protected and cannot be edited.’ Only users with the password can unprotect.

Phase 2: Restrict access to specific ranges

Select B2:E10 on the main Sales Data sheet. Go to Review → Allow Users to Edit Ranges (Alt+R, A, R). Click New. Enter a title like ‘Finance Edit Range’, set the range as $B$2:$E$10, and add Finance’s email (e.g., finance@acmecorp.com). Set a separate password — different from the sheet password. Now only those users can edit revenue/target numbers. Everyone else sees them as locked.

ActionCell RangeAllowed UsersPassword Required?
Edit Q2 RevenueB2:B10finance@acmecorp.comYes (‘fin-edit-2024’)
Edit Q2 TargetD2:D10finance@acmecorp.comYes (‘fin-edit-2024’)
View onlyA1:F10All othersNo — but sheet is protected

Phase 3: Configure sharing permissions (the part everyone skips)

This is where 90% of people stop too early. With your file saved to OneDrive, click the Share button in the top-right corner. Don’t paste emails yet. First, click the gear icon (⚙️) → More options. Uncheck ‘Allow editing’ — unless you absolutely need it. For most collaborators, ‘Can view’ is safer. Then, under ‘Link settings’, choose ‘Specific people’ — never ‘Anyone with the link’. Why? Because ‘Anyone’ lets interns, ex-employees, or phishing bots access your file if the link leaks. Also: turn OFF ‘Require sign-in’ only if you’re sharing externally with clients who don’t have your org’s Microsoft account. Otherwise, leave it ON — it enforces MFA and audit logs.

Phase 4: Hide what shouldn’t be seen

Go to the ‘Commission Calculations’ sheet tab. Right-click → Hide. Then go to Review → Protect Workbook → Protect Structure and Windows. Set another password. Now users can’t unhide the sheet — even if they know it exists. They’ll only see Summary and Sales Data tabs. This is the counterintuitive tip: hiding a sheet *after* protecting structure is far more reliable than just hiding it alone. Without protection, someone can unhide it via VBA or by copying the sheet to a new workbook.

The Result

Here’s what your stakeholders actually experience — and why it works:

User RoleWhat They SeeWhat They Can DoWhere It Fails (and Why)
Finance TeamSummary + Sales Data tabsEdit B2:E10; view all other cellsCan’t delete columns — structure is protected
Sales OpsSummary + Sales Data tabsView only; can sort/filterCan’t edit — range protection blocks it
External ContractorOnly Summary tabView only; no copy/paste of formulasCan’t access Sales Data — link permissions restrict them
You (Owner)All tabs, including hidden onesFull edit, unprotect, change permissionsNone — you control the master key
Uninvited UserAccess denied or blank screenNothing — no link, no credentialsNo risk — link isn’t public

What Could Go Wrong

These aren’t hypotheticals. These are the exact errors I’ve debugged in client workbooks — with timestamps and error messages pulled from real support tickets.

SymptomCauseFix
‘This file is locked for editing by another user’ appears — but no one else is onlineOneDrive sync conflict created a hidden ‘~$Sales-Tracker.xlsx’ lock file in the folderIn File Explorer, enable ‘Hidden items’, navigate to the folder, delete any file starting with ‘~$’. Then close/reopen Excel.
User edits B2 but the formula in F2 doesn’t recalculateWorksheet calculation mode was manually set to Manual (Formulas → Calculation Options → Manual)Press Ctrl+Alt+F9 to force full recalc. Or set it back to Automatic: Formulas → Calculation Options → Automatic.
Contractor sees ‘#REF!’ errors in Summary tab after first editThey pasted values over a dynamic array formula in C2:C10, breaking spill range integrityRestore the original formula in C2: =IF(B2="","",B2/D2). Then protect that column using Allow Users to Edit Ranges — excluding C2:C10.

Now go open your workbook. Save it to OneDrive *first*. Then walk through Phases 1–4 — don’t skip Phase 4. Hide that sensitive sheet *after* protecting structure. And next time someone asks for a copy, send them a link instead of an attachment. You’ll save yourself three hours of reconciliation next month.

Michael Lee

Michael Lee

Michael covers the latest in office software updates