Stop Clicking 'Transform Data' — What It *Really* Means in Excel

The first thing most people do when they see the Transform Data button on the Data tab is click it—then panic when their spreadsheet vanishes into a gray Power Query editor window. That’s not transforming data. That’s opening the door to chaos without knowing where the exit is.

The Setup

You inherit a sales report from three regional managers: raw exports pasted into separate sheets, inconsistent date formats, mixed casing, duplicate IDs, and currency symbols buried in text. No formulas. No structure. Just noise.

IDNameRegionAmountDate
A-702li weiEast$12,450.002024/02/14
B-319Sarah ChenWEST¥98,20015-Mar-24
C-441Miguel R.central14,75003/22/2024
A-702Li WeiEast$12,450.002024/02/14
D-887Anya PetrovaNorth€6,290.502024-04-01
E-205James T.SOUTH18,320Apr 5, 2024
F-112Rajiv Mehtaeast₹1,024,8002024.03.19
G-553Yuki TanakaWest¥104,6002024/03/28

The Challenge

You need one clean table: standardized region names (East/West/North/South/Central), USD-only Amounts as numbers (not text), proper Date values (not strings), and no duplicates like A-702 appearing twice. You also need to keep this process repeatable next month.

Doing this manually with FIND/REPLACE, VALUE(), DATEVALUE(), and TRIM() across 12 columns and 1,400 rows? You’ll miss something. And if the source changes format next time, you’ll redo it all.

That’s why ‘transform data’ exists—not as a button to click, but as a verb: to apply a sequence of reproducible edits. Not formatting. Not formulas. Edits that live inside Power Query—and only execute when you hit Close & Load.

Walking Through It

Start with the raw table in A1:E9. Select any cell inside it. Press Alt + A + T — that’s the keyboard shortcut for Data → Transform Data. Don’t click the ribbon. Alt shortcuts prevent accidental clicks on ‘From Table/Range’ instead.

You land in Power Query Editor. The left pane shows Queries. The center shows your table. Right pane shows Applied Steps.

Step 1: Promote Headers
Right-click column 1 → ‘Use First Row as Headers’. Now headers are ID, Name, Region, etc. This step fixes the misaligned header row that came from copy-paste.

IDNameRegionAmountDate
A-702li weiEast$12,450.002024/02/14
B-319Sarah ChenWEST¥98,20015-Mar-24

Step 2: Clean Region
Click the Region column header → Transform → Format → Lowercase → then Transform → Format → Capitalize Each Word. Now ‘west’ becomes ‘West’, ‘central’ → ‘Central’. Done in two clicks. No formula. No risk of breaking other columns.

Step 3: Standardize Amounts
Select the Amount column → Transform → Data Type → Currency. Power Query auto-detects ¥, €, ₹, $ and converts them to USD using current exchange rates *only if you’ve configured that*. But you haven’t — so it fails on ¥ and ₹. Instead: Transform → Format → Remove Characters → type ‘¥€₹’ → OK. Then change data type to Decimal Number. Now all values are clean numbers.

Surprising tip: If you skip removing symbols first and go straight to Decimal Number, Power Query silently converts ¥98,200 to 98200 — ignoring currency. It doesn’t warn you. That’s why previewing each step matters.

Step 4: Fix Dates
Select Date → Transform → Date → From Date/Time. Fails on ‘15-Mar-24’. So instead: Transform → Format → Replace Values → find ‘-‘ replace with ‘/’ → then try From Date/Time again. Or better: Transform → Date → Parse → Using Locale → English (United States). That handles ‘2024.03.19’ and ‘Apr 5, 2024’ in one shot.

Step 5: Remove Duplicates
Home → Remove Rows → Remove Duplicates → select only ID column. A-702 disappears once. No risk of deleting valid rows with same name or amount.

The Result

After all steps, click Close & Load. Excel drops a new table starting at A1 of a new sheet. Here’s exactly what you get:

IDNameRegionAmountDate
A-702Li WeiEast124502024-02-14
B-319Sarah ChenWest982002024-03-15
C-441Miguel R.Central147502024-03-22
D-887Anya PetrovaNorth6290.52024-04-01
E-205James T.South183202024-04-05
F-112Rajiv MehtaEast10248002024-03-19
G-553Yuki TanakaWest1046002024-03-28

What Could Go Wrong

Mistake #1: Editing the loaded table instead of the query
You fix a typo in the final sheet — say, changing ‘CentraL’ to ‘Central’ in cell C6. Next refresh? Power Query overwrites it. Your manual edit vanishes. Always edit in Power Query, never downstream.

Mistake #2: Forgetting to set data types before filtering
If Amount stays as Text and you filter ‘greater than 50000’, Power Query compares strings: ‘1024800’ < ‘6290.5’ alphabetically. You’ll get zero rows. Set data types early — before any logic.

Mistake #3: Loading to worksheet instead of Data Model
You need PivotTables later? Don’t load to a worksheet. In the Close & Load dropdown, choose ‘Close & Load To…’ → ‘Only Create Connection’ + check ‘Add this data to the Data Model’. Otherwise, you’ll hit row limits and can’t build relationships.

Here’s what to do next:

ActionShortcut / PathWhy
Open Power Query EditorAlt + A + TFaster than hunting the ribbon — and avoids wrong ‘From’ options
Undo last stepCtrl + Z (in editor)Works inside Power Query — unlike Excel’s undo stack
Refresh all queriesAlt + A + RUpdates every loaded query — no need to open each one
View applied stepsRight pane → ‘Applied Steps’Each step is editable, reorderable, deletable — your audit trail
Emily Watson

Emily Watson

Emily is an expert in workplace culture and team dynamics. Her articles help professionals navigate interpersonal challenges and build better coworker relationships.