Upside down text with shrink to fit by textbox

Sami_Noa

New Member
Joined
Apr 19, 2019
Messages
14
Hi, I need to invert text in cells up down side and I have found the best way to insert textbox and invert it then linking it to the cell.
I try to make the text in the textbox to shrink to fit the size of the text box, thanks in advance.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Try this:

to DECREASE font size - click on shape and "OK" (click more than once to keep decreasing)

to INCREASE font size - click on shape and replace "Y" with any other character (or delete the "Y")


Assgn this macro to the textbox
Code:
Sub TextBox1_Click()
    
With ActiveSheet.Shapes(Application.Caller).TextFrame.Characters.Font
    If UCase(InputBox("Y = decrease", "Font Size", "Y")) = "Y" Then .Size = .Size - 1 Else .Size = .Size + 1
End With

End Sub
 
Upvote 0
Thank you
The shrink to fit is the most amazing formatting features in excel.
That makes me make printing programs many times from excels file.

I think there isn't any way to get this features on textboxs but something like your way.
Thank you again.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,528
Messages
6,114,154
Members
448,553
Latest member
slaytonpa

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top