Stop Copy-Pasting Web Tables — Extract Data into Excel in 2 Clicks

Most Excel trainers tell you to ‘use Power Query’ or ‘install a browser extension’ to get web data into Excel. They’re overcomplicating it. Excel has had a fully functional, zero-code web data import tool since 2016—and 92% of users don’t know it exists because they’ve never seen it used correctly.

The Problem

You’re tracking supplier pricing from vendor websites. You copy-paste a table from https://techparts.co/pricing into Excel—and instantly get garbage.

Raw Paste Result (A1:C7)SymptomCauseFix
"Part #\nA-772\nB-409\nC-115"Headers merged with first rowBrowser HTML structure + paste formattingDon’t paste. Import.
"$129.99\n$84.50\n$212.00"Currency values as textNo number recognition on pasteUse Data → From Web (preserves type)
"In Stock\nBackorder\nDiscontinued"Inconsistent spacing & line breaksHTML
tags + inconsistent whitespace
Power Query auto-cleans during import
"Acme Corp\nTechNova Ltd\nVeridian Systems"Company names split across rowsMulti-column layout collapsed into single columnWeb import detects true table structure
"2024-03-15\n2024-04-02\n2024-02-28"Dates imported as text, not serial numbersPaste ignores locale & date format detectionFrom Web guesses date types correctly

This isn’t user error. It’s using the wrong tool for the job. Copy-paste was never meant for structured web data.

The Solution

Do this instead—start fresh in a blank workbook:

  1. Select Data tab → Get Data → From Web (Alt+A+W)
  2. In the dialog box, paste https://techparts.co/pricing. Click OK.
  3. Excel loads a Navigator window. You’ll see a list of detected tables. Click the one labeled “Pricing Table Q2 2024” (not “Navigation”, not “Footer Links”).
  4. Click Load (not Load To). This drops the cleaned table starting at cell A1.

That’s it. No VBA. No Chrome extensions. No manual trimming. Your result looks like this:

Part #SupplierPriceStatusLast Updated
A-772Acme Corp$129.99In Stock2024-03-15
B-409TechNova Ltd$84.50Backorder2024-04-02
C-115Veridian Systems$212.00Discontinued2024-02-28
D-883Nexus Dynamics$67.25In Stock2024-04-10
E-201Solara Industries$143.80In Stock2024-04-05
F-997Orion Labs$95.00Backorder2024-04-12

Notice: Price is numeric (not text), dates are Excel serials (so =TODAY()-E2 works), and Status is plain text—no extra spaces or line breaks. All in under 20 seconds.

Going Further

You can do more than just load once. Right-click any cell in the imported table → Refresh. Excel re-fetches the live HTML and updates your sheet. Set up automatic refresh every 2 hours via Data → Queries & Connections → right-click query → Properties → check ‘Refresh every X hours’.

Need multiple pages? Add them as separate queries: repeat steps 1–4 for https://techparts.co/pricing?page=2, then use Power Query Editor (Data → Get Data → Launch Editor) to append tables.

What if the site blocks scraping? Try this counterintuitive fix: In the Navigator window, click Transform Data before loading. In Power Query Editor, go to Advanced Editor and replace Web.Contents with Web.BrowserContents. This renders the page like a real browser—bypassing many anti-bot scripts.

You can also extract non-table content. In Power Query Editor, select a column with URLs (e.g., B2:B10 contains product links), right-click → Extract → Text Between Delimiters, and pull out SKUs like ‘SKU-8832’ from ‘https://techparts.co/product/SKU-8832’.

When NOT to Use This

This fails when the target site uses JavaScript-heavy rendering (e.g., React or Angular apps that populate tables after page load). If Navigator shows zero tables or only header/footer links, the data isn’t in static HTML—and Excel’s From Web won’t see it.

Don’t use it for login-protected pages. Excel’s web importer doesn’t support cookies or sessions. Trying to paste a URL like https://portal.supplier.com/dashboard will return a login screen—not your data.

Avoid it for sites with CAPTCHA, rate limiting, or robots.txt blocks. Excel sends standard HTTP requests. If the site returns a 403 or blank response, stop. You’ll need Python + Selenium or a dedicated service—not Excel.

Also skip this method if your source changes DOM structure weekly. One broken <table> tag means your entire refresh fails silently. Check the query status bar: green = success, red = broken, yellow = partial.

Keyboard Shortcuts

ActionShortcutNotes
Open From Web dialogAlt + A + WFastest path—no mouse needed
Refresh all queriesAlt + A + RSaves 8 seconds vs. right-clicking each
Open Power Query EditorAlt + A + QEssential for cleaning or merging
Cancel current importEscWorks mid-load—stops unresponsive hangs
Toggle Query Settings paneCtrl + Shift + F10Shows refresh schedule, privacy level
Sarah Mitchell

Sarah Mitchell

Sarah has 12 years of experience covering Microsoft 365 productivity tools and enterprise software workflows. She specializes in Excel automation and SharePoint integration.