Problem using FIND method with a variable to update changes to a sheet cell

chazrab

Well-known Member
Joined
Oct 21, 2006
Messages
884
Office Version
  1. 365
Platform
  1. Windows
I'm getting the old 'type mismatch' error at this line:
Code:
Private Sub cmdFINDVAL_Click()
Dim ws As Worksheet
Dim rng As Range
Dim txt As String
Set ws = Worksheets("PROPHLINKS") 'change to your worksheet name
txt = Me.TextBox1.Text 'change to your textbox name
Set rng = ws.Cells.FIND(What:=txt)  ---> type mismatch error at this line
If Not rng Is Nothing Then
    MsgBox "Found " & txt & " in cell " & rng.Address
Else
    MsgBox txt & " not found in " & ws.Name
End If

the variable txt is a large block of text in a Userform textbox. It is exactly the same as the sheet cell value.
the error and the variable text images below. I'm using the FIND method to find this same value in the sheet in order to update
the cell with changes made from the textbox. Standard process, yet not working.

Any idea why this is not working ?

Thanks for anyone's help.
cr
 

Attachments

  • TYPE MISMATH ERROR AT THIS LINE.png
    TYPE MISMATH ERROR AT THIS LINE.png
    45.6 KB · Views: 9
  • txt = Textbox1.text.  Find method should Find any parital value o this Textbox in the sheet ce...png
    txt = Textbox1.text. Find method should Find any parital value o this Textbox in the sheet ce...png
    86.5 KB · Views: 9
If you are only looking in one column, something like this might work.
(I have assumed looking in Column C)

Rich (BB code):
Private Sub cmdFINDVAL_Click()

Dim ws As Worksheet
Dim rng As Range
Dim txt As String
Dim returnTxt As String

Set ws = Worksheets("PROPHLINKS") 'change to your worksheet name
txt = Me.TextBox1.Text 'change to your textbox name

returnTxt = WorksheetFunction.XLookup("*" & txt & "*", ws.Range("C:C"), ws.Range("C:C"), "", 2)

If returnTxt <> "" Then
    Set rng = WorksheetFunction.XLookup("*" & txt & "*", ws.Range("C:C"), ws.Range("C:C"), "", 2)
    MsgBox "Found " & txt & " in cell " & rng.Address
Else
    MsgBox txt & " not found in " & ws.Name
End If

End Sub
 
Upvote 0

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
you said you changed the Sheet name
to something else and it ran successfully ?
Yes, because I didn't have a sheet called PROPHLINKS so I used one I had. I was pretty sure the sheet name was not the issue.
 
Upvote 0
Would not a match of 255 characters suffice? Would the following work?
VBA Code:
Set rng = ws.Cells.FIND(What:=Left(txt,255), LookAt:=xlWhole)
 
Upvote 0
Would not a match of 255 characters suffice? Would the following work?
VBA Code:
Set rng = ws.Cells.FIND(What:=Left(txt,255), LookAt:=xlWhole)
If you are only taking the first 255 characters you need to change the xlWhole to xlPart.
 
Upvote 0
I don't know if everyone is getting this update, but the intention is a blanket reply to all. You've all been extremely helpful, and I very
much appreciate it. After a good nights sleep, I think I came up with the solution.

The objective was just to make any changes in any sheet cell from a userform textbox displaying that cells contents and save it back
to that cell on the sheet - straightforward enough.

in order to do that, I kept thinking that if I could get the cell address of that particular cell that's displayed in the textbox,,
I could use it by assigning it to a variable in the FIND method and letting FIND locate that cell address. Once that's done successfully.
changes to the cells text would be made, through the textbox and a Save button writes the updated changes to the correct cell back to the sheet.

The first thing I did was to write the cell address of each cell at the beginning of the cell for all cells. Since most situations like mine have
many many cells to work with, I needed a quick way to do this. So I used the Activecell with a small userform this way
Code:
Private Sub cmdINSERTADDRESS_Click()
If ActiveCell.Value <> "" Then
ActiveCell.Value = ActiveCell.Address(0, 0) + " " + ActiveCell.Value
Else
End If
End Sub
This puts the cell address without $'s at the beginning ot the cell text.
After making any changes to Textbox1 of the userform, I used this simple code to let FIND find the correct cell address
Code:
Dim c, e As Range
Set e = Worksheets("PROPHLINKS").Range("A1:T50")
   x = UserForm8.TextBox3.Value  ---> cell address of displayed sheet cell
With e
   Set c = .FIND(x, LookIn:=xlValues, LookAt:=xlPart, MatchCase:=False, SearchFormat:=False)
           If Not c Is Nothing Then
               MsgBox x & " " & "value found'" & "  " & c.Address
                c.Value = UserForm8.TextBox1.Value
           Else
               MsgBox "No value found"
          End If
          MsgBox "Note copied"
End With
Images of results below.
I only tested this a couple of times. The code seems to be correct it works for two cases. To me, then, it should work every time, unless there is some underlying bug that may pop up - I've had that happen before.

Once again, thanks for everyone's help. Hope all can see this reply.
cr
 

Attachments

  • INSERT CELL ADDRESS AT BEGINNING OF TEXT.png
    INSERT CELL ADDRESS AT BEGINNING OF TEXT.png
    61.1 KB · Views: 4
  • HIGHLIGHTED CHANGES TO THE TEXTBOX.png
    HIGHLIGHTED CHANGES TO THE TEXTBOX.png
    66.7 KB · Views: 5
  • SHEET CELL WITH POSTED CHANGES.png
    SHEET CELL WITH POSTED CHANGES.png
    62.3 KB · Views: 4
Upvote 0
The objective was just to make any changes in any sheet cell from a userform textbox displaying that cells contents
If the textbox has text that was taken from a cell to begin with, wouldn't it be trivial to just save a reference to the cell at the time the textbox is loaded, and then save it back to that cell? When I first looked at your question I didn't reach back into what you were doing, I was just trying to figure out why you got an error on Find.

P.S. When I type FIND, the editor autocorrects to Find. I am still astonished that yours goes in the opposite direction.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,953
Members
449,095
Latest member
nmaske

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