Darren Smith
Well-known Member
- Joined
- Nov 23, 2020
- Messages
- 631
- Office Version
- 2019
- Platform
- Windows
I have tried to use a VLookup code on a worksheet to use VLookup function to find prices on worksheet Parts list then fill this into worksheet Job Card Master using code in column D to fill column O to lastrow.
The code won't run the error says "Application-defined or object-defined error"?
The code won't run the error says "Application-defined or object-defined error"?
VBA Code:
Private Sub Up_Date_Prices_Click()
Dim JCM As Worksheet, PartsList As Worksheet
Dim JCMLastRow As Long, PartsListLastRow As Long, x As Long
Dim DataRng As Range
Set JCM = ThisWorkbook.Worksheets("Job Card Master")
Set PartsList = ThisWorkbook.Worksheets("Parts List")
JCMLastRow = JCM.Range("A" & Rows.Count).End(xlUp).row
PartsListLastRow = PartsList.Range("A" & Rows.Count).End(xlUp).row
Set DataRng = PartsList.Range("A2:B" & PartsListLastRow)
For x = 13 To JCMLastRow
On Error Resume Next
JCM.Range("O" & x).Value = Application.WorksheetFunction.VLookup( _
JCM.Range("D" & x).Value.DataRng, 2, False)
Next x
End Sub