• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

text box shows partial text from linked cell

Why does my text box show only part of the cell contents of the linked cell? Using Windows 10 with Excel 2021
 

Attachments

  • sample_Book1.xlsx
    37.6 KB · Views: 6
Eat More Bacon
One sample
... save below code to Sheet1's code-page and run it.
Code:
Sub Do_It()
    With ActiveSheet
        .Shapes("TextBox 5").TextFrame.Characters.Text = .Range("K56")
    End With
End Sub
 
Thanks! Now how do I run the code when I change K56?
Do I need to do that manually? Or assign a keyboard shortcut? Or can it be done whenever K56 updates?
 
Eat More Bacon
You seems to did many questions about - How:
#1 Modify cell K56 and press < ENTER >
#2 Modify V-column and press < ENTER >
#3 Click that TextBox
 

Attachments

  • sample_Book1.xlsb
    36.3 KB · Views: 2
Back
Top