Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

Using MS Excel I can go to Format of the cell and choose the text orientation from horizontal to vertical fairly easy. How do I alter text orientation to vertical in Google Spreadsheet document?

share|improve this question

migrated from superuser.com Aug 13 '11 at 0:50

3 Answers

up vote 9 down vote accepted
  1. Select your cell
  2. Replace its content with the following formula:

    =ARRAYFORMULA(CONCATENATE((MID( "Text to become vertical"; ROW(INDIRECT("YY1:YY"&LEN( "Text to become vertical" ))); 1)&CHAR(10))))
    
  3. Repeat for each cell

Observation: make sure the text you want in your cell is the same in both instances of the formula.

From here: http://www.quikstarts.com/Internet/Google-Docs/how-to-make-vertical-column-headers-in-google-docs/

share|improve this answer
Almost there but not quiet since I have to make it for each cell. I think I can live with this. :) Thanks – Darius Aug 23 '11 at 23:22

You have do create it as a drawing. See here for more details on how to create word art.

share|improve this answer

Place the cursor between two characters, hold down the Ctrl key and press the Enter key to create a line break between the chars.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.