How do you make text vertical in Word 2010?

I want to make a text look like this:

S
u
p
e
r
U
s
e
r

I can go to a new line after each letter, but it's not really practical. Where can I find the setting to make the text be written in a vertical way in Word 2010?

8 Answers

  • Enter your Word art as usual
  • Then click on the word art box you just made
  • Make sure you click on 'Format' on the top of Publisher
  • Third option across the top says 'vertical text'
  • Click and your text is vertical ;)
1

I don't know of a setting for that specifically but you can make a text box, type in the text box and then re-size the box so it is narrow enough to only allow for one letter per line. It will automatically push letters to the next line as the box narrows.

3

Excel does have a format option for that, so you can insert an Excel spreadsheet to the Word file instead, by going to Insert tab > Table > Excel Spreadsheet

word new excel spreadsheet

After that right click the cell that contains the text you want to rotate > Format cells (or press Ctrl+1) then change the text orientation as below

text direction

Or you can simply click the Orientation button on Home/Alignment and select Vertical Text

vertical text

By default there are no borders between cells, so it'll be blank when printing even though you can see them being grey on screen (just like how Excel works by default). But if you also need the page to be blank on screen then you can edit the cells' fill color to white (in the same Format cells dialog above) which results in a word file like this

blank word file

2

Use Word's Find and Replace along with regular expressions.

  1. Enter the text you want displayed vertically as a single string (no spaces).
  2. Open Find and Replace dialog (Ctrl+H)
  3. Select the Use wildcards check box. If you don't see Use wildcards check box, click More.
  4. Enter the following:

    Find what: ([A-Za-z])

    Replace with: \1^

  5. Click Replace All. A line break will be inserted after each upper and lower case letter.

Below is a quick description of this regular expression.

  • () round brackets group and capture matched text
  • [] square brackets enclose a character class, in this case all upper and lower case letters, A-Za-z
  • \1 is a backreference to Group 1 matched in the find expression

Word's regular expressions differ from standard regex in some ways, and more information about using regular expressions in Word can be found here.

I think the only way this can be done while keeping the text vertical is using a Word Art Box.

Insert Tab then Word Art

0

Try making the right indent on your paragraph format larger than the paragraph width. This should force the text to a single letter per line.

1

Format table direction

This may be the answer you are looking for.

2

Go to Insert and then insert table. The Table Tools will appear and go to Layout. In the Alignment section you will find Text Direction. Under Text Direction you can do what you are looking to do.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like