Search for text within textbox and select text box

dpalomino1009

New Member
Joined
Mar 3, 2019
Messages
20
Hello,

I wanted to search for text within a textbox and select it. I was surprised that excel's search wont find text within a textbox. Is there a macro that could find any given text within a text box and select the text box containing that given text? Maybe have the macro could search for text in a selected cell after entering text in it? Please let me know if you have any ideas.

Thank you,
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
This is the type of thing you need to do - amend the dimensions etc accordingly
List the names of the shapes to be excluded, separated by commas under he first Case statement
Call the procedure from the relevant event macros which must be placed in sheet "Map"
(see post#6 Deactivate and Selection_Change)

Code:
Sub LoopShape()
    Dim Shp As Shape
    For Each Shp In Sheets("Map").Shapes
        Select Case Shp.Name
            Case "NameOfMapShape", "NameOfKeyShape"
                'do nothing
            Case Else
                Shp.Height = 99
                Shp.Width = 99
                Shp.TextFrame.Characters.Font.Size = 99
        End Select
    Next Shp
End Sub
 
Last edited:
Upvote 0
Thank you, so close! It's working, but for some reason the map gets formatted as well as the cell that matches the text, even though the map is a picture and has no text. Is there a way to avoid having the map change along with the shape? Noting code below.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
ElseIf Not Intersect(Range("E2:E192,E202:E251"), Target) Is Nothing Then    
    Dim Shp As Shape, Ws As Worksheet
    Set Ws = Sheets("Map")
    
    Ws.Activate: Ws.Range("A1").Select
    
    For Each Shp In Ws.Shapes
        
        If Shp.DrawingObject.Text = Target Then
        Shp.Select
        Shp.Width = 108
        Shp.TextFrame.Characters.Font.Size = 15
        End If
        
    Next Shp
    
End If
Application.ScreenUpdating = True


End Sub
 
Upvote 0
Why have you posted the code which selects the shape? - that was sorted previously

You were trying to reset the shape back to original size
Here is a simpler option for you to return shape to its original size
- Variable Shp is declared as a public variable, making it available to all procedures after being set in Worksheet_Change
- It is a way to allow VBA to remember which shape was selected
- DO NOT declare Shp inside any other procedures - use a different variable name instead

Make the variable Public
1. Amend Worksheet_Change macro and remove the declaration of Shp
Code:
Dim [COLOR=#a9a9a9]Shp As Shape, [/COLOR]Ws As Worksheet
[COLOR=#ff0000][I]change to:[/I][/COLOR]
Dim Ws As Worksheet

2. Create a public variable at the top of a STANDARD module
- it must be placed ABOVE all procedures
Code:
Public Shp As Shape

Reset the selected shape
Insert these procedures in SHEET module for sheet "Map" (delete previous versions with the same name in that module)
Code:
Private Sub Worksheet_Deactivate()
    If Not Shp Is Nothing Then ResetShape
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Not Shp Is Nothing Then ResetShape
End Sub

Private Sub ResetShape()
    Shp.Width = 50
    Shp.TextFrame.Characters.Font.Size = 10
    Set Shp = Nothing
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,814
Messages
6,162,133
Members
451,743
Latest member
matt3388

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