hi there
I found this code to turn a wordart text upside down. How do edit it to turn the content of cell m37 upside down.
here is the code:
I found this code to turn a wordart text upside down. How do edit it to turn the content of cell m37 upside down.
here is the code:
Code:
Sub upSidn()
Dim n As Object
Application.ScreenUpdating = False
Set n = ActiveSheet.Shapes.AddTextEffect(PresetTextEffect:=msoTextEffect1, _
Text:="Whassup?", FontName:="Arial Black", FontSize:=8, FontBold:=msoFalse, _
FontItalic:=msoFalse, Left:=3, Top:=3)
n.Rotation = 180
End Sub