Trying to return a row number with find method

Darren Smith

Well-known Member
Joined
Nov 23, 2020
Messages
631
Office Version
  1. 2019
Platform
  1. Windows
I am trying to return the row number but it says Run-Time error 91 on the line below...
Any ideas why???

VBA Code:
iRow = .Range("S13:S" & .UsedRange.Rows.Count).Find("GROSS PROFIT ANALYSIS", LookIn:=xlValues, lookat:=xlWhole).Row

Private Sub Fill_Details_to_JobRecord_Click()

    TurnOff
             
                Application.ScreenUpdating = False
              
                  
                        Dim SrcOpen As Workbook
                        Dim Des As Workbook
                        Dim JCM As Worksheet
                        Dim TGSR As Worksheet
                        Dim FilePath As String
                        Dim Filename As String
                        Dim DesDataRange As Range
                        Dim SrcDataRange As Range
                        Dim iRow As Integer
                      
                      
                        FilePath = "\\tgs-srv01\share\ShopFloor\PRODUCTION\JOB BOOK\"
                        Filename = "JOB RECORD SHEET.xlsm"
                      
                        Set JCM = ThisWorkbook.Worksheets("Job Card Master")

                      
                        Set SrcDataRange = JCM.Range("A13").CurrentRegion

                      
'                      On Error GoTo ErrHandler
                       With JCM
                  
                     iRow = .Range("S13:S" & .UsedRange.Rows.Count).Find("GROSS PROFIT ANALYSIS", LookIn:=xlValues, lookat:=xlWhole).Row
                     iRow = iRow + 7

                     End With
                   
                     Set SrcOpen = Workbooks.Open(FilePath & Filename)
                     Set TGSR = SrcOpen.Worksheets("TGS JOB RECORD")
                     Windows("JOB RECORD SHEET.xlsm").Visible = True
                   
                      TGSR.Range("V").Value = WorksheetFunction.VLookup(JCM.Range("G2"), iRow, 22, 0)
                      Range("V").Select
                   
                  
                      SrcOpen.Close
       
'ErrHandler:
'                       If Err = 1004 Then
'                       MsgBox "Fill Job Number in Job Card Master Sheet Cell G2"
'                       End If

TurnOn
End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Most likely that the Find hasn't actually found what you are looking for.
 
Upvote 0
Yes. You will get that message if it cannot find that value in that range.
So you may need to use some error handling on that error to in order to handle that situation.
 
Upvote 0
That value is in the range I`ve made sure of it? The Value is in merged cells is that not going to work?
 
Upvote 0
That value is in the range I`ve made sure of it?
What cell address is it in?
Does it match EXACTLY?
Where is this data originally coming from (the web, external report, etc)?
The reason I ask is because I often see data that comes from the Web or other programs use special spaces instead of ordinary spaces, which causes things not to match,
 
Upvote 0
What cell address is it in? s159, This will vary so thats why i am using the find method
Does it match EXACTLY? Yes i copied it straight from the spreadsheet
Where is this data originally coming from (the web, external report, etc)? No just of a excel spread sheet
The reason I ask is because I often see data that comes from the Web or other programs use special spaces instead of ordinary spaces, which causes things not to match, I see
 
Upvote 0
What does this return.
VBA Code:
Res = Application.Match("GROSS PROFIT ANALYSIS", JCM.Range("S:S"), 0)

If IsError(Res) Then
    MsgBox "GROSS PROFIT ANALYSIS not found"
Else
    iRow = Res
End if
 
Upvote 0
Try removing the .UsedRange from the iRow calculation and see if it works, i.e. change this row:
VBA Code:
iRow = .Range("S13:S" & .UsedRange.Rows.Count).Find("GROSS PROFIT ANALYSIS", LookIn:=xlValues, lookat:=xlWhole).Row
to this:
VBA Code:
iRow = .Range("S13:S" & .Rows.Count).Find("GROSS PROFIT ANALYSIS", LookIn:=xlValues, lookat:=xlWhole).Row

If that still does not work, run this code and tell me what it returns:
VBA Code:
Sub Test1()

    Dim JCM As Worksheet
    Dim iRow As Long
    
    Set JCM = ThisWorkbook.Worksheets("Job Card Master")
    
    MsgBox JCM.Range("S159") = "GROSS PROFIT ANALYSIS"
    
End Sub
 
Upvote 0
Solution
Try removing the .UsedRange from the iRow calculation and see if it works, i.e. change this row:
VBA Code:
iRow = .Range("S13:S" & .UsedRange.Rows.Count).Find("GROSS PROFIT ANALYSIS", LookIn:=xlValues, lookat:=xlWhole).Row
to this:
VBA Code:
iRow = .Range("S13:S" & .Rows.Count).Find("GROSS PROFIT ANALYSIS", LookIn:=xlValues, lookat:=xlWhole).Row

If that still does not work, run this code and tell me what it returns:
VBA Code:
Sub Test1()

    Dim JCM As Worksheet
    Dim iRow As Long
   
    Set JCM = ThisWorkbook.Worksheets("Job Card Master")
   
    MsgBox JCM.Range("S159") = "GROSS PROFIT ANALYSIS"
   
End Sub
I tried taking the used range away but no luck.
The Msgbox says True
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

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