rotation

G

Gord Dibben

Except for the limit of 90 degrees this would be a great idea.

Do you really want it to be rotated 180 degrees?

This would turn the text upsidedown.

Perhaps you mean reverse the order of the text in the cell?

This UDF will do that.

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

If you wish the true 180 degrees, I would suggest a drawing program then
insert the graphic into Excel.

Gord Dibben Excel MVP
 
J

JE McGimpsey

One way:

Choose Tools/Customize/Toolbars and drag the Camera control to a
convenient toolbar.

Select the cell(s) to be rotated 180 degrees.

Click on the camera control, then drag on the sheet to create a linked
picture.

Using the picture toolbar, rotate the picture 180 degrees.

Position the picture over your cell(s).
 
M

mireillea

Is there a way in excel to rotate the contents of the cell to 180 degrees?
Thanks
 
K

Ken Wright

Same as JE's but without having to get the icon, simply copy the cell(s) you
require, hold down Shift and then choose Edit / Paste / Picture link. Then just
rotate using the Draw toolbar. Data stays linked and will update when the
source cells change.
 
Top