How to Remove Accents and Convert Characters to Standard English in Excel

📅 Aug 09, 2026 📝 Sarah Miller

Managing inconsistent datasets with accented characters often leads to critical database errors during system uploads. While standard IT funding sources typically prioritize expensive, complex ETL software to resolve data integrity issues, utilizing Excel formulas grants users a direct, cost-free method to sanitize data locally.

As a key stipulation, Excel lacks a single native function to strip diacritics, requiring either nested SUBSTITUTE arrays or VBA for comprehensive cleaning. However, this method reliably transforms entries like "Renée" or "München" into "Renee" and "Munchen."

Below, we will outline the exact step-by-step formulas and custom VBA functions to automate your character translation workflow.

How to Remove Accents and Convert Characters to Standard English in Excel

Managing data in Microsoft Excel often requires cleaning up text to ensure consistency, especially when dealing with international datasets. One of the most common data-cleaning challenges is handling accented characters (diacritics) such as á, é, í, ó, ú, ü, ñ, ç, and their uppercase counterparts.

Whether you are preparing email addresses, formatting names for a database upload, or standardizing search queries, keeping these accents can cause compatibility issues with legacy systems. Because Excel does not feature a built-in, one-click REMOVEACCENTS function, we have to look at alternative solutions.

In this comprehensive guide, we will explore four powerful methods to replace accent characters with standard English letters: nested formulas, modern dynamic array formulas (Excel 365), VBA User-Defined Functions (UDFs), and Power Query.


Method 1: The Traditional Nested SUBSTITUTE Formula

If you are using an older version of Excel (such as Excel 2013, 2016, or 2019) and cannot use macros, your best native option is nesting multiple SUBSTITUTE functions.

The SUBSTITUTE function works by looking at a text string, finding a specific character, and replacing it with another. The syntax is:

=SUBSTITUTE(text, old_text, new_text)

To replace multiple accents, you must feed the output of one SUBSTITUTE function into another. Here is what a formula looks like for standard lowercase vowels:

=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A2, "á", "a"), "é", "e"), "í", "i"), "ó", "o"), "ú", "u")

Expanding the Formula for Comprehensive Coverage

The formula above only handles five lowercase accented vowels. If you need to clean a broader range of characters (including uppercase letters and characters like ñ or ç), the formula grows significantly:

=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A2, "á", "a"), "é", "e"), "í", "i"), "ó", "o"), "ú", "u"), "ñ", "n"), "ç", "c"), "Á", "A"), "É", "E"), "Í", "I")

Pros:

  • Works in all versions of Excel.
  • Requires no macro enablement (.xlsx files remain macro-free).
  • Calculates instantly on small datasets.

Cons:

  • Extremely tedious to write and maintain.
  • Excel limits formula nesting to 64 levels, meaning you cannot cover every possible international diacritic in a single cell.

Method 2: The Modern Excel 365 REDUCE and LAMBDA Approach

For users on Excel 365 or Excel for the Web, Microsoft introduced lambda helper functions. We can combine REDUCE and LAMBDA to perform batch replacements cleanly without writing complex nested structures.

The REDUCE function steps through an array of values, applies a calculation to each item, and accumulates the result. By pairing it with a translation map, we can replace dozens of characters at once.

Step 1: Set up a Translation Map

First, create a small lookup table in your workbook (for example, in columns D and E) mapping accented characters to their plain counterparts:

Accent (Col D) Plain (Col E)
áa
ée
íi
óo
úu
ñn
çc

Step 2: Apply the REDUCE Formula

Assuming your original text is in cell A2, the mapping list of accents is in D2:D8, and the replacements are in E2:E8, use this formula:

=REDUCE(A2, D2:D8, LAMBDA(current_text, accent, SUBSTITUTE(current_text, accent, XLOOKUP(accent, D2:D8, E2:E8))))

How this works:

  1. REDUCE starts with the initial value in A2.
  2. It loops through each cell in the array D2:D8 (the accents list).
  3. For each accent, the LAMBDA runs a SUBSTITUTE.
  4. The XLOOKUP finds the corresponding plain English letter from E2:E8 to use as the replacement value.
  5. The system outputs the final, clean text string once it completes all loops.

Method 3: Using a VBA User-Defined Function (UDF)

If you regularly need to strip accents across multiple workbooks, a VBA macro is the most robust and elegant solution. It allows you to create a custom formula-such as =StripAccents(A2)-that works exactly like a native Excel function.

The VBA Code

Open your VBA editor by pressing ALT + F11, insert a new module (Insert > Module), and paste the following code:

Function StripAccents(textString As String) As String
    Dim accents As String
    Dim plainLetters As String
    Dim i As Long
    
    ' Define the characters to search for and their replacements
    accents = "ÀÁÂÃÄÅàáâãäåÈÉÊËèéêëÌÍÎÏìíîïÒÓÔÕÖØòóôõöøÙÚÛÜùúûüÝýÿÑñÇç"
    plainLetters = "AAAAAAaaaaaaEEEEeeeeIIIIiiiiOOOOOOooooooUUUUuuuuYyyNnCc"
    
    ' Loop through each character and replace if a match is found
    For i = 1 To Len(accents)
        textString = Replace(textString, Mid(accents, i, 1), Mid(plainLetters, i, 1))
    Next i
    
    StripAccents = textString
End Function

How to Use Your New Function

  1. Close the VBA Editor window and return to your Excel sheet.
  2. In cell B2, write: =StripAccents(A2)
  3. Press Enter and drag the fill handle down to apply it to other cells.

Note: Remember to save your Excel workbook as an Excel Macro-Enabled Workbook (.xlsm) to preserve this VBA code.


Method 4: Cleaning Accents Using Power Query

When working with large external datasets, processing data inside Excel worksheets can slow down your system. Power Query is the ideal environment to clean data during the import phase.

While Power Query doesn't have an automatic "remove diacritics" button, we can use a custom replacement trick utilizing translation lists.

Step-by-Step Power Query Process:

  1. Select your data range, go to the Data tab, and click From Table/Range to open the Power Query Editor.
  2. In the editor menu, go to Add Column > Custom Column.
  3. Name your new column (e.g., Clean_Text) and enter the following Power Query formula:
    Text.Replace(Text.Replace(Text.Replace([OriginalColumn], "á", "a"), "é", "e"), "í", "i")

For advanced users handling large sets of diverse accents, you can implement a bulk replacement function in the Advanced Editor by loading an Excel translation table and using List.Accumulate. This keeps your query steps clean and easily updateable without writing repetitive steps.


Comparing Your Options

Choosing the right method depends on your environment, Excel version, and overall workflow:

Method Best For Pros Cons
Nested SUBSTITUTE Quick, single-cell fixes in older Excel versions. No macros; works everywhere. Becomes excessively long and unreadable quickly.
REDUCE & LAMBDA Modern Excel 365 environments. Dynamic; easily updated via standard worksheet ranges. Not backwards compatible with older Excel versions.
VBA UDF Recurring cleaning tasks across sheets. Cleans dozens of character types with a simple, readable formula. Requires saving files as .xlsm; blocked by some corporate IT security policies.
Power Query Large external datasets (databases, CSV imports). Extremely fast; automated on refresh; handles millions of rows. Requires learning a separate interface outside standard grid functions.

Summary

Cleaning accented characters does not have to be a painful manual process of "Find and Replace" (Ctrl+H) for every letter of the alphabet. If you are on the newest version of Excel, leverage the elegant REDUCE / LAMBDA method. If you seek automated convenience across your templates, deploy the VBA UDF. For bulk data integration, rely on the raw speed and stability of Power Query. Pick the solution that fits your pipeline and enjoy clean, standardized, and system-compatible data!

Disclaimer:
The documents and templates provided on this page are for informational and illustrative purposes only. They do not constitute professional, legal, or financial advice, and should not be relied upon as such. Because individual circumstances and regulatory requirements vary, these materials may not be suitable for your specific needs. We recommend consulting with a qualified professional before adapting or using any of these examples for official or commercial purposes.