#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Rotating Text 180

I'd like to be able to rotate the text entered in a cell by 180 degrees. It
appears that this can't be done in Excel anymore. Is there a workaround?

Thanks,
Barb Reinhardt
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,718
Default Rotating Text 180

The maximum number is +/- 90 degrees

"Barb Reinhardt" wrote:

I'd like to be able to rotate the text entered in a cell by 180 degrees. It
appears that this can't be done in Excel anymore. Is there a workaround?

Thanks,
Barb Reinhardt

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Rotating Text 180

One alternative is to insert a Word Art object

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Teethless mama" wrote in message
...
The maximum number is +/- 90 degrees

"Barb Reinhardt" wrote:

I'd like to be able to rotate the text entered in a cell by 180 degrees.
It
appears that this can't be done in Excel anymore. Is there a
workaround?

Thanks,
Barb Reinhardt


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Rotating Text 180

Are you wanting it flipped upside down, or just backwards? If upside down,
Teethless mama is correct, you can't do that with a cell. You'd have to use a
text box/drawing. If you just want the info reveresed, you could use this UDF:

Function FlipIt(Old_Text As String) As String
For i = 1 To Len(Old_Text)
FlipIt = Mid(Old_Text, i, 1) & FlipIt
Next
End Function
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Barb Reinhardt" wrote:

I'd like to be able to rotate the text entered in a cell by 180 degrees. It
appears that this can't be done in Excel anymore. Is there a workaround?

Thanks,
Barb Reinhardt

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Rotating Text 180

Barb

appears that this can't be done in Excel anymore


180 degrees rotation could never be done in any version of Excel.

Let's see.............180 degrees rotation would turn the text right to left
and upside down.

I can get text to change from left to right to right to left but not upside
down.

Public Function RevStr(rng As Range)
RevStr = StrReverse(rng.text)
End Function

Otherwise you would have to take a picture of the cell and rotate.


Gord Dibben MS Excel MVP

On Wed, 19 Aug 2009 08:11:03 -0700, Barb Reinhardt
wrote:

I'd like to be able to rotate the text entered in a cell by 180 degrees. It
appears that this can't be done in Excel anymore. Is there a workaround?

Thanks,
Barb Reinhardt




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Rotating Text 180

You could put the text to rotate 180 degrees in an out of the way cell.

The edit|copy (xl2003 menus)
Select the cell where you want the inverted text to be.
Shift-edit|paste picture link
Then rotate this picture so that it's upside down.

Any changes you make to that out of the way cell will be reflected in the
picture link.

Barb Reinhardt wrote:

I'd like to be able to rotate the text entered in a cell by 180 degrees. It
appears that this can't be done in Excel anymore. Is there a workaround?

Thanks,
Barb Reinhardt


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Rotating Text in a cell mosstele Excel Discussion (Misc queries) 0 March 25th 09 03:11 PM
Rotating Text box in Excel 2003 Susan115 Excel Discussion (Misc queries) 1 March 6th 09 07:00 PM
Rotating linked text boxes Chris LaPorta Excel Discussion (Misc queries) 0 March 2nd 09 07:43 PM
TEXT - ROTATING [email protected] Charts and Charting in Excel 2 December 5th 08 07:19 PM
Rotating Text StanTheManII Excel Worksheet Functions 6 October 20th 08 11:35 PM


All times are GMT +1. The time now is 01:13 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"