How to Convert Tab Characters to White Space in Word?
If you need to reformat a document, changing tabs to white spaces may be required. Is there any quicker way to convert tabs to spaces in Word? This tutorial will show you some methods for converting tabs to spaces in word as follows:
Convert tabs to spaces with the Find and Replace
Convert tabs to spaces with VBA code
Convert tabs to spaces with Kutools for Word
Convert tabs to spaces with the Find and Replace
Amazing! Use Efficient Tabs in Word (Office) like Chrome, Firefox and New Internet Explorer!
Instead of changing tabs to spaces one by one, the Word’s Find and Replace function is commonly used to convert tabs to spaces.
Step 1: Click Home > Replace to open the Find and Replace window;
Step 2: Click More button to bring up more Search Options;
Step 2: Place the cursor in the Find What field, and select Tab Character from the Special pull-down menu (or enter “^t” in the Find What field);
Step 3: Enter a space character (press space button on your keyboard) in the Replace With field;
Step 4: Click Replace All.
Convert tabs to spaces with VBA code
You may run macro to convert all tab characters to spaces if you are good at VBA code.
Step 1: Press “Alt-F11” to open the Microsoft Visual Basic for Application window;
Step 2: Click Module on the Insert tab, copy and paste the following VBA code into the Module window;
Step 3: Then click Run button to apply the VBA.
VBA: Convert tabs to spaces in Word:
Sub Replacetabswithspaces()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^t"
.Replacement.Text = " "
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchByte = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
.MatchFuzzy = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Convert tabs to spaces with Kutools for Word
The simplest way to convert tabs to spaces may be the way with Kutools for Word. After you select the whole document or a part of the document, only one click will convert all tab characters to white space immediately.
Kutools for Word, a handy add-in, includes groups of tools to ease your work and enhance your ability of processing word document. Free Trial for 45 days! Get It Now!
Click Kutools > Tab to Space on the Paragraph group. See screenshot:
For more detailed information about Convert Tabs to Spaces of Kutools for Word, please visit: Tab to Space feature description.
Recommended Word Productivity Tools
Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time
- Complicated and repeated operations can be done one-time processing in seconds.
- Insert multiple images across folders into Word document at once.
- Merge and combine multiple Word files across folders into one with your desired order.
- Split the current document into separate documents according to heading, section break or other criteria.
- Convert files between Doc and Docx, Docx and PDF, collection of tools for common conversions and selection, and so on...



