Stop Asking 'Does Chromebook Have Excel' — Try This Instead

The first thing most people do when they buy a Chromebook and need Excel is search ‘does chromebook have excel’ — then panic when the answer is ‘no’. That’s the wrong question. You don’t need Excel installed to open, edit, or even automate spreadsheets. You need the right setup — and the wrong setup breaks formulas, corrupts formatting, and loses cell comments. Let’s fix it.

The Setup

You’re managing vendor payments for a small logistics firm: Acme Corp, Skyline Freight, Veridian Logistics, etc. Data comes in weekly as an Excel file (vendors.xlsx) — but it’s messy. Column headers are inconsistent, some amounts are text, dates are misaligned, and one row has duplicate entries. You’re working on a Chromebook — no Microsoft 365 subscription, no Windows emulator, just Chrome OS 124 and a $299 Acer Spin 514.

Vendor NameInvoice DateAmount ($)Status
Acme Corp2024-03-1512,450.00Paid
Skyline Freight03/18/20248,720.50Pending
Veridian Logistics2024-03-2015,900Paid
Nexus DeliveryMar 22 2024$6,210.75Pending
TerraRoute Inc2024/03/2511200Paid
Orion Haulage2024-03-269,850.00Overdue
Aurora Transco03/28/2024$14,630.20Pending
Summit Express2024-03-297890Paid
Blueway LogisticsMar 30 2024$5,120.00Pending
Valiant Transport2024/04/0110,450Overdue

The Challenge

You need to: (1) standardize date formats across B2:B11, (2) convert all Amount values in C2:C11 to numbers (strip $, commas, and trailing spaces), (3) flag overdue invoices with red fill in column D, and (4) sort by date ascending — without breaking formulas or losing decimal precision. The trap? Opening the file directly in Google Sheets and clicking ‘Convert’ — that silently changes number formatting, truncates decimals like 8,720.50 → 8720.5, and strips leading zeros from invoice IDs if they were in the sheet. Also, Ctrl+C/Ctrl+V from Excel into Sheets drops conditional formatting entirely.

Worse: if you use the Office Online web app (office.com), you’ll hit a hard limit at 5MB file size and lose access to XLOOKUP or dynamic arrays — even if your Chromebook has 16GB RAM.

Walking Through It

Step 1: Upload to Google Drive — but don’t open yet. Right-click the file in Drive > “Open with” > “Google Sheets”. Wait for the full conversion dialog. Click “Keep original formatting” — not “Convert to Google Sheets format”. This preserves number types and prevents rounding.

Step 2: Fix dates without DATEVALUE(). In cell B13, type =TEXT(B2,"yyyy-mm-dd"). Drag down to B11. Then copy B13:B22, select B2:B11, right-click > “Paste special” > “Values only” (Alt+E+S+V). Delete column B13:B22. Why avoid DATEVALUE? It fails on ‘Mar 22 2024’ and ‘2024/03/25’ unless you wrap each in SUBSTITUTE — too fragile. TEXT() is safer.

Before (B2:B11)After (B2:B11)
2024-03-152024-03-15
03/18/20242024-03-18
2024-03-202024-03-20
Mar 22 20242024-03-22
2024/03/252024-03-25

Step 3: Clean amounts — skip VALUE(). In D2, enter =SUBSTITUTE(SUBSTITUTE(TRIM(C2),"$",""),",","")+0. Drag down to D11. This strips $ and commas, trims whitespace, then forces numeric coercion with +0. VALUE() fails on “$6,210.75” if there’s a non-breaking space — +0 doesn’t care. Then copy D2:D11, paste values over C2:C11. Delete column D.

Step 4: Conditional formatting for Overdue. Select D2:D11 > Format > Conditional formatting > “Text contains” > type “Overdue” > choose red fill (#ffcccc). Don’t use “Custom formula” — it’s slower and breaks on Chromebook’s offline mode.

The Result

Here’s what your cleaned sheet looks like after all steps — fully editable, formula-aware, and compatible with Excel exports:

Vendor NameInvoice DateAmount ($)Status
Acme Corp2024-03-1512450.00Paid
Skyline Freight2024-03-188720.50Pending
Veridian Logistics2024-03-2015900.00Paid
Nexus Delivery2024-03-226210.75Pending
TerraRoute Inc2024-03-2511200.00Paid
Orion Haulage2024-03-269850.00Overdue
Aurora Transco2024-03-2814630.20Pending
Summit Express2024-03-297890.00Paid
Blueway Logistics2024-03-305120.00Pending
Valiant Transport2024-04-0110450.00Overdue

What Could Go Wrong

Mistake #1: Using ‘Open in Office Online’ from Gmail. If someone emails you vendors.xlsx and you click “Edit in Office Online”, you get a read-only preview until you click “Edit in Browser”. But that opens a new tab with no autosave — and if your Chromebook sleeps for 90 seconds, you lose everything. No warning. No recovery.

Mistake #2: Copy-pasting formulas from Excel into Sheets without adjusting syntax. =IF(A2="Paid",1,0) works. =XLOOKUP(A2,A:A,B:B,"") does not — Sheets uses =XLOOKUP(A2,A2:A100,B2:B100,"",0,1). Miss the last two arguments? Returns #N/A silently — and you won’t spot it until month-end reconciliation fails.

Mistake #3: Assuming .xlsx export preserves conditional formatting. When you File > Download > Microsoft Excel (.xlsx), Sheets converts red fill to solid color — but ignores gradient rules, icon sets, and data bars. Your “Overdue” highlight stays, but a “Top 10%” rule vanishes. Always test the exported file in Excel for Mac or Windows before sending to finance.

Next step — do this now:

ActionShortcut / PathWorks Offline?
Paste values onlyAlt+E+S+V
Open Excel file in Sheets (preserving formatting)Right-click in Drive > Open with > Google Sheets > Check “Keep original formatting”✗ (needs internet)
Apply red fill to textFormat > Conditional formatting > Text contains > “Overdue” > Fill color
Export clean .xlsxFile > Download > Microsoft Excel (.xlsx)✓ (but re-check in Excel)
Lisa Anderson

Lisa Anderson

Lisa is a certified Microsoft trainer who writes step-by-step guides for Power Automate